NEW VIDEO DRIVER that supports U400?

The available graphics driver (Radeon Catalyst) for my U400 ideapad is last update in 2011 in the Lenovo website. Is there any new driver that can support my 6470M (switchable graphics)?

This is a proprietary "system" that includes the conversion cable + software.  They work together and it appears they are Windows only.  It may be possible to use the cable itself with a Mac but there is no software from Happague for Macs.  Happauge provides no specs on the video conversion that the cable does, so there's no way to tell what software you might be able to use with it except by experiment.
My suggestion is to get an inexpensive miniDV camcorder.  These connect to Macs via FireWire and can be used as webcams.   Borrow one if possible for testing purposes.   I have used them many times for webinars, Skyping, etc.

Similar Messages

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • Looking for oracle JDBC driver that support Rowset

    I am using oracle driver "oracle.jdbc.OracleDriver" downloaded from oracle.com and i am using cached rowset in my program but my program gave me runtime error :
    Exception in thread "main" java.lang.AbstractMethodError: oracle.jdbc.driver.OracleDatabaseMetaData.locatorsUpdateCopy()Z
    at com.sun.rowset.CachedRowSetImpl.execute(CachedRowSetImpl.java:757)
    at com.sun.rowset.CachedRowSetImpl.execute(CachedRowSetImpl.java:1385)
    at WebRowSetSample.main(WebRowSetSample.java:73)
    but if i used data driver provided by Data Direct "com.ddtek.jdbc.oracle.OracleDriver" then it is working fine but the problem is data direct driver is not free and cant be used in production server, so if anyone know any free driver that support oracle and rowset implementation or able to correct problem then plz help me out.
    thanks...

    Hi I am using latest driver from oracle site, but the problem is when i fire execute method of cahed rowset i throws error that i mentioned above, if you have any other driver than mail me on [email protected]

  • Hi, Could you please suggest a video player, that support all video formats?

    Hi, Could you please suggest a video player, that support all video formats?

    This is probably as good as it gets:
    https://itunes.apple.com/app/media-player-playerxtreme-hd/id456584471
    You won't find anything that plays "all video formats", because of the restrictions built into the iOS.

  • AMD Radeon(TM) HD 7650A Graphics Driver that supports Miracast

    Please 
    Anyone with any infomation as when will HP and  AMD release a new Display driver with Miracast support, would be very much appreciated.
    DxDiag on this cards driver is as follow:
    Display Devices
              Card name: AMD Radeon(TM) HD 7650A Graphics
           Manufacturer: Advanced Micro Devices, Inc.
              Chip type: AMD Radeon Graphics Processor (0x6751)
               DAC type: Internal DAC(400MHz)
            Device Type: Full Device
             Device Key: Enum\PCI\VEN_1002&DEV_6751&SUBSYS_26811462&REV_00
         Display Memory: 5875 MB
       Dedicated Memory: 2035 MB
          Shared Memory: 3840 MB
           Current Mode: 1920 x 1080 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: HP TouchSmart
             Monitor Id: HWP4213
            Native Mode: 1920 x 1080(p) (59.993Hz)
            Output Type: DVI
            Driver Name: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Driver File Version: 8.17.0010.1230 (English)
         Driver Version: 13.152.0.0
            DDI Version: 11
         Feature Levels: 11.0,10.1,10.0,9.3,9.2,9.1
           Driver Model: WDDM 1.3
    Graphics Preemption: DMA
     Compute Preemption: DMA
               Miracast: Not Supported by Graphics driver
    Hybrid Graphics GPU: Not Supported
         Power P-states: Not Supported
      Driver Attributes: Final Retail
       Driver Date/Size: 8/31/2013 08:13:56, 1233080 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B71EE2-2411-11CF-1C73-8B06BEC2C535}
              Vendor ID: 0x1002
              Device ID: 0x6751
              SubSys ID: 0x26811462
            Revision ID: 0x0000
     Driver Strong Name: oem68.inf:cb0ae414a9bc0bd1:ati2mtag_NI:13.152.0.0ci\ven_1002&dev_6751&subsys_26811462
         Rank Of Driver: 00DA0001
            Video Accel: ModeMPEG2_A ModeMPEG2_C
    Please help me.

    Hi Sleyum"
    Thank you for your inquiry.
    HP strives to have the most up to date drivers  but many factors affect this.
    You can check the manufacturers website for recent updates for your product.
    Here is a link to the "AMD Support and Drivers page. click here.
    I hope this helps.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Video format that supports iTunes- appleTV streaming AND DLNA

    I have both DLNA support and an Apple TV. I've been converting my dvds to mp4 so I can stream via iTunes to my TV,,Unfortunately mp4 is not compatible with DLNA (mpeg2). Is there a video/audio format, or a software solution, that will work? Of course the simple solution would be for Itunes to support mpeg-2 formation...Any insight?

    Ok.
    If you stick to this outline, using MOV that may work.
    H.264 video up to 1080p, 30 frames per second, High or Main Profile level 4.0 or lower, Baseline profile level 3.0 or lower with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4 and .mov file formats
    Try using things like MPEG Streamclip, which will enable you to configure a profile

  • Implementing a new PKI Structure that supports SHA256

    My question has to do with moving away from our old PKI environment and onto a new PKI environment I am designing.
    A little background...So due to the fact that our existing PKI environment was not installed using most best practices and it only supports SHA1, I am designing a new PKI environment based on Windows Server 2012 R2.  The intention is to implement
    many of the best practices Brian Komar talks about in his book and support SHA256.  When I am done I will have two PKI hierarchies...the old SHA1 hierarchy and the new SHA256 hierarchy.  I can easily move Forest members over to using new certificates,
    but my concern is around internal Java applications.
    Assuming the Java application owners do not have a good way of distributing the new CA certificates to their client's Trusted certificates store (I apologize for my lack of knowledge around Java), is there a way I can bridge the two PKI hierarchies? 
    I have been experimenting with Cross CA certificates and Qualified Subordination, but that really seems like overkill for my situation.  These two PKI environments are within the same organization.  Is there a simpler way to essentially sign
    the SHA256 root CA certificate with the SHA1 root CA, so that if the Java clients see a new SSL certificate, for example, issued from the new SHA256 CA's they will have the ability to construct the chain of trust to the old SHA1 root
    CA?  This would just be a temporary solution to give us time to get the new CA certificates out there to the Java clients.
    Thank you.

    > is there a way I can bridge the two PKI hierarchies?  I have been experimenting with Cross CA certificates and Qualified Subordination, but that really seems like overkill for my situation.
    yes, you can bridge via Qualified Subordination (Cross-Certification) and it is the only way you can bridge PKIs. However, bridging should be a temporary solution, because SHA2 PKI will chain to SHA1 root, which is not recommended.
    > This would just be a temporary solution to give us time to get the new CA certificates out there to the Java clients.
    then cross-certification is your best solution.
    My weblog: en-us.sysadmins.lv
    PowerShell PKI Module: pspki.codeplex.com
    PowerShell Cmdlet Help Editor pscmdlethelpeditor.codeplex.com
    Check out new: SSL Certificate Verifier
    Check out new:
    PowerShell FCIV tool.

  • What is a great video card that supports GPU acceleration?

    A customer of mine wants to speed up his Adobe Lightroom 6 setup.  He has various SSD's, and is ready to upgrade his graphics card to take advantage of the GPU acceleration found in LR 6.  I was wondering if there was an up to date list of suggested, or sought after LR video cards? 
    Thanks!

    On my system with an an i7-860 cpu and Nvidia Quadro 600 graphics card there's no benefit from LR CC GPU support. In fact when browsing image files in the Develop module there is an additional `1.5 to 2 sec. delay before the image becomes fully sharp. I suspect my i7 860 Quad Core processor is actually faster than my Quadro 600 GPU for updating the image previews, so I have it disabled. In addition there have been numerous reports form people with AMD GPU based graphics cards due to driver incompatibility.
    My best suggestion is to get the highest performance Nvidia graphics card the customer can afford. If the customer also uses PS and a 30 bit (10 bit/color) monitor you will need an Nvidia Quadro model card. AMD FIrePro supports 30 bit color, but as mentioned many users currently have driver compatibility issues with LR CC. PassMark is a good site for benchmark comparison:
    PassMark Software - Video Card (GPU) Benchmark Charts
    If the card is strictly for speeding up LR CC I'd hold off for a while until the dust settles.

  • Getting a video card that supports extended desktop mode: AGP? PCI?

    Hi guys and gals (and everything in between),
    One of the reasons I got a Power Mac not so long ago was the convenience of using two or more displays at once, but then I discovered that the stock ATI Rage 128 in my Gigabit 450 (dual) does not support two displays. (I discovered it the hard way, when I connected a recently acquired Studio display to it, and my trusty CRT stopped getting a signal.)
    I won't be using the computer for games, design or anything graphics intensive, mostly word processing (I'm a translator/editor/writer by trade), so I do not need the high end of the video card spectrum --just an AGP card that could allow me to work on extended desktop mode, preferably with an ADC connector. Would a Radeon 7500 suffice?
    Or maybe a PCI card? I have read a lot in this forums against getting a PCI card, because of the 33 Mhz bottleneck, but wouldn't it work well enough for checking email and working on 2 or 3 documents at once?
    Any help with this will be greatly appreciated!
    Peace.
    eMac, iMac, iBook, Power Mac Gigabit (running Tiger & 9.2.2)   Mac OS X (10.3.9)  

    Thanks, PB PM.
    I also did a little research in the forums and elsewhere (by the way, your posts have been really helpful to me, very knowledgeable and well-documented), and ended up buying a Radeon 7000 PCI for hooking up my VGA monitor, as a cheap solution to my problem.
    Thanks again!
    eMac, iMac, iBook, Power Mac Gigabit (running Tiger & 9.2.2)   Mac OS X (10.3.9)  

  • How do I migrate files created in a Windows OS to a new external drive that is formatted as a MAC drive. I want to read and write these files back to the new drive.

    How do I migrate files from an external hard drive created in a Windows OS to a new MAC external drive? I want to read and write these files to the new drive.

    LKrzesowski wrote:
    How do I migrate files from an external hard drive created in a Windows OS to a new MAC external drive? I want to read and write these files to the new drive.
    If all you're trying to do is move the files from the Windows external to the Mac external, you can simply connect them both to the Mac and drag the files from the Windows drive to the Mac drive. If you want to move the files back and forth between them, you'll need to establish the format of the Windows external. Macs can read and write to FAT32 and exFAT (which can handle files larger than 4GB) formatted drives but can only read NTFS formatted drives without additional software. With the Windows drive connected, you can check its format with Disk Utility.

  • When I export to disc, lightroom 5 tells me it cannot locate a drive that supports burning eventhough I have the capability

    What changes do I need to make?   Lightroom 5 is not recognizing a drive capable of supporting burning when exporting to disc

    Select one of the movies in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder Window should open with the file selected.
    Does it?

  • Where Can I download a video player that supports AVI. or other main files?

    I just got an macbook which I loving IT!!
    However, I only have quicktime...
    Well I transfer an AVI files to play onto macbook...
    It doesn't work however so I downloaded an GOM Player which
    it cannot installed onto it...
    Is there any player that plays any files??

    Files with the .avi extension could be several different codecs. A free third party plugin for Apple's Quicktime Player called Perian (http://www.perian.org/) allows Quicktime to play a wide variety of video files, including most with the .avi extension. Also, make sure to download and install the FlipForMac extension ( http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx ) for .wmv files.
    Message was edited by: kjk

  • Catalyst Control Center crashes with new video driver update

    Hi Folks,
    I just updated to the newest rev of the ATI driver (April 28, 2009).  Now, catalyst control center crashes at startup, opening a dialog box that says, "catalyst control center monitoring program has encountered a problem and needs to close".
    Has anyone else run into this?  Any ideas on how to fix it?
    Thanks,
    Allie
    T400 2764-CTO, XP

    Please post the details of your problem with the 8.563 driver in this thread.
    Use the format from  this post.
    T500: Vista 32, 2.8GHz, 4GB RAM, 15.4" 1680x1050, 500GB 7200rpm, ATI Radeon HD3650 + Intel 4500MHD. T42: XP, 1.7GHz, 2GB RAM, 14.1" 1024x768, 250GB PATA, ATI Radeon 7500.

  • I am having trouble installing my Lexmark Prevail Pro705 software on my mac, is there a driver that supports the latest os system?

    i just got a lexmark prevail pro705, i am trying to install it on my mac but the driver does not support my os system.

    Have you checked with Lexmark or looked at their support pages for software updates?

  • I installed a new printer driver that was missing and now I can't get to my desktop. I can log in but it stays on the same page. How do I boot from disc?

    I recently upgraded to Snow Leopard and was missing the drivers for my HP 5000 printer. I got the drivers from HP and downloaded them. When I unzipped the file, my computer went to the login page. I logged in but it stays on that page. Can't get to desktop or do anything. Can anyone help with this?

    See if you can boot into the Safe Mode.
    Safe Mode - About
    Safe Mode

Maybe you are looking for

  • My iPhone won't sync the recent music that I've bought onto my iTunes Library on the computer. How do I get my music to finally sync?

    I've tried to sync my iPhone 3 to my MacBook Pro for a little while now. It has never synced my music from my iPhone onto my music library that is on my computer. I have 427 songs on my iPhone and only 237 of those songs are downloaded on my computer

  • Inspection for Parent Child Relation

    Hi We are producing Mat.A from Mat .B and you want to copy the results from Mat.B . Both materials are batch managed. The requirement is - At the inspection for Material A , want to use batch derivation to copy results of Mat B (Parent Child Process)

  • I have a big problem and need help.

    I was trying to delete some files when I got a message that said that one of the files contained a program that was running. I close out the program and deleted the file but something happened. I closed out Windows Explorer and notices all my desktop

  • How can I get rid of Apple's Helvetica?

    I need to get rid of the Helvetica system fonts so I can use Suitcase to load a complete set of Helvetica. I have removed all Helveticas I can find but still get a conflict when I try to open a different version. I work with other people's files and

  • Macbook Pro Freezes After Activating Mission Control

    I am updated currently to 10.7.4, and I am having a problem that could not be duplicated after a 4 day stay at my local Apple store. Basically the computer freezes up and becomes unresponsive. The last two times it has happened, I noticed (Possibly a