Media - Video issue

I have a 8300 Curve with OS V4.2.2.  I have downloaded 2 x MP4 format films onto a 4gb media card, using windows explorer and the BB in data access mode.  When playing on the BB I get the audio track only and no picture.  The films play ok on the desktop but not on BB.  What am i doing wrong? 

Convert audio and video files for the media application on the BlackBerry smartphone
Message Edited by frfghtr on 04-29-2008 09:00 AM

Similar Messages

  • Videos emailed from my iPhone4 won't open or play on the recipients' computer.  Is this a quicktime/windows media player issue?   What is the best way to solve this ?  THANKS!

    Videos emailed from my iPhone4 won't open or play on the recipients' computer.  Is this a quicktime/windows media player issue?   What is the best way to solve this ?  THANKS!

    Is the recipient using QuickTime on their PC to view the video?
    What is the error message provided when trying to open/view the video?

  • How do I run a Windows Media video File .wmv in FireFox? What is the required extension or add-on name?

    I have Windows 7 and FireFox 24.0
    I am trying to make a standard Microsoft Media Video file .MWV run. When I click on the video link to plant the video I get a message saying I need a plugin to run the file.
    I have already run in the install program at the link below. This install program named wmpfirefoxplugin.exe does not install anything into my FireFox plugins list or Extensions list.
    https://support.mozilla.org/en-US/kb/play-windows-media-files-in-firefox?esab=a&as=aaq
    When else can I try to make FireFox run a .MWV file?

    hello, please try this: enter '''about:config''' into the firefox address bar (confirm the info message in case it shows up) & search for the preference named '''plugins.load_appdir_plugins'''. double-click it and change its value to '''true''' (a restart of the browser might be necessary afterwards for the change to take effect).
    some background on the issue is explained in http://www.ghacks.net/2013/05/15/why-you-may-have-lost-access-to-plugins-or-extensions-in-firefox-21/

  • AIR for Android video issue

    On Android, in an app that I’ve developed successfully for iOS, I’m seeing this problem:
    There are 5 videos built-into the app. On Samsung phones (S3 and S4), running Android 4.4.2, at the first attempt to play a video there’s sound but no picture. After returning to the video menu and attempting again, video and sound play normally. If a video is stopped and another one is started, initially a frame of the previous video is displayed (for a fraction of a second), then play resumes normally with the chosen video.
    The sound-but-no-video problem does NOT show up on a Nexus 7 running 4.4.3, although the flash-frame problem does.
    I’m publishing with AIR SDK 15 packaging both with and without captive runtime to try to isolate the source of the problem. I’m using <contains video> true </contains video> in the descriptor.
    This feels like AIR-for-Android buggishness. Any confirmation out there? Similar problems? Workarounds?
    I’ve read somewhere that AIR runtime  v.3.3 may solve some video problems on Android, but not sure where to find an archived Android version of AIR that old.

    Well, as it sometimes happens with me, I have spoken too soon. The answer that I marked as ‘correct’ the other day (Colin, are you there?), seems to be not quite the right answer. At least, it doesn’t solve the video problem that I’m having with some, but not all, Android devices.
    After trying Colin’s suggestion – using  if (stage.stageVideos.length != 0) to make sure that a stageVideoAvailabilityEvent hasn’t already fired when I try to play my first StageVideo instance – and getting perfect results in 10 consecutive tries on my Samsung S4 and S3 phones, I figured that was IT.
    Next day, same devices and same code, it DIDN’T work! I pulled hair, issued profanities, hammered on the table. It didn’t matter—I still got a ‘mis-fire’ on the first play of a video whenever (almost whenever) I opened the app. After the first play everything was good – which is the exact problem that I started with many days ago. When I played Colin’s Sesame Street ‘Let’s Get Ready’ app again – the same first-play-of-video problem shows up there too.
    This problem does not show up on Nexus 7  and the Samsung Galaxy 5 Tab. It is a royal p.i.t.a. on Samsung phones, where I need my app to work.
    I created a bare-bones app to reproduce the problem, code below. Just a single class to play a single video with no controls. A few parameters (path to the video, and viewport stuff) are passed in from the document Class. I run it 10 times on my S4. It fails 7 times and plays well 3 times. The 'initialize2()' function never fires, proving that the stageVideos array already exists by the the time the 'initialize1()' function is called.
    I'm pretty sure that this is not a coding problem (because it works well on some Androids and in iOS), but WHAT is it??
    package vidTestSource
      import flash.desktop.NativeApplication;
      import flash.desktop.SystemIdleMode;
      import flash.display.MovieClip;
      import flash.display.Sprite;
      import flash.display.StageAlign;
      import flash.display.StageScaleMode;
      import flash.events.Event;
      import flash.events.NetStatusEvent;
      import flash.events.StageVideoAvailabilityEvent;
      import flash.geom.Rectangle;
      import flash.media.StageVideo;
      import flash.media.Video;
      import flash.media.StageVideoAvailability;
      import flash.net.NetConnection;
      import flash.net.NetStream;
      public class MobileVideosolo extends MovieClip
          public var stream:NetStream ;
          public var video:StageVideo;
          var xx:Number;
          var yy:Number;
          var ww:Number;
          var hh:Number;
          var mymoov:String;
      public function MobileVideosolo(mymoov,xx,yy,ww,hh)
          this.xx = xx;
          this.yy = yy;
          this.ww = ww;
          this.hh = hh;
          this.mymoov = mymoov;
         addEventListener(Event.ADDED_TO_STAGE, onstage);
    function onstage(e)
        if (stage.stageVideos.length != 0)
           initialize1();
         else
          stage.addEventListener(StageVideoAvailabilityEvent.STAGE_VIDEO_AVAILABILITY, stageVideoState );
    function stageVideoState(e)
           initialize2();
           stage.removeEventListener (StageVideoAvailabilityEvent.STAGE_VIDEO_AVAILABILITY, stageVideoState);
    function initialize1()
          var nc:NetConnection = new NetConnection() ;
          nc.connect(null) ;
          stream = new NetStream(nc) ;
          stream.client = this ;
          video = stage.stageVideos[0] ;
          video.viewPort = new Rectangle(xx,yy,ww,hh) ;
          video.attachNetStream(stream) ;
          stream.play (mymoov) ;
          MovieClip(parent).sVtext.text = "Init 1";
          stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
    function initialize2()
        var nc:NetConnection = new NetConnection() ;
         nc.connect(null) ;
         stream = new NetStream(nc) ;
         stream.client = this ;
         video = stage.stageVideos[0] ;
         video.viewPort = new Rectangle(xx,yy,ww,hh) ;
         video.attachNetStream(stream) ;
         stream.play (mymoov) ;
         MovieClip(parent).sVtext.text = "Init 2";
         stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);

  • Media Pending Issue???

    Here is the answer for MEDIA PENDING issue,  after you render on Adobe Premiere CC 2014, all you have to do is click on the little eye icon on the left side of the sequence and then un-click it...or click back on it,,,,,,.and presto!!! you can see your wonderful rendered master piece!!!!  Do this for every video line that you're using. I hope this helps, happy editing!!!

    OK - this isn't a codec issue.... I have an old copy of Premiere Elements 2
    and I've just installed it. I can import the audio and video and they both
    conform and index fine, and quickly too. They cut, render out as AVIs...
    they work!
    I go back to Premiere Pro CS4 and everything is still pending. How can this
    be if it is a codec issue? Surely the codec is there if Premiere Elements 2
    can do it?
    So why does it all work at work with Premier Pro CS4 but not at home?
    Any ideas?

  • Lightroom 4.4 video issues, I think it may be a windows 8 issue.

    I am not sure when this started happening or what has changed.  I went to import some video and in the import dialog box all my video files show "Preview unavailable for this file" in the thumbnail in the grid view.  And if I try to import them i get a dialog box with a message that says Import Results > Some import operations were not performed. > There is a problem with the video file (1) > [Filename].AVI
    I am currently using windows 8 and I have imported video to this catalog before from the same camera.  The video plays fine in the video players(windows media player, quicktime, and the new video app on windows 8 that is the default player in the OS).
    I went throught the http://helpx.adobe.com/lightroom/kb/troubleshoot-video-issues-lightroo m-4.html and did all those suggestions.  I am now turning to the forums before I reach out to support.
    Has anyone else run into this issue or a simililar one that may be able to give me a workaround or solution?
    I am a cloud subscriber and all my programs are up to date.  Windows is current, all players are current, and this specific catalog has .AVI files in it from the same camera and the firmware on the camera has never been updated since I started shooting video.
    Thanks,
    Alex

    I had the same problem -- also on Windows 8. I was trying to import .MOV files from an Olympus OM-D E-M5 into Lightroom and got the error you mentioned.
    I believe it was a problem with my QuickTime installation. I was using an unofficial distribution of QuickTime called "QT Lite", and apparently it doesn't play well with Lightroom. Uninstalled that, installed the latest QuickTime and video imports started to work.
    Unfortunately I then ran into this other problem, which sometimes causes video editing to fail: http://forums.adobe.com/thread/972420

  • MEDIA MANAGER ISSUES?? PLEASE READ BEFORE POSTING

    We have created several Media Manager specific threads for your issues that are "stickied" at the top of this board.  These are :
    Media Manager Installation Issues
    Media Manager Design Issues
    Media Manager Audio Playback Issues
    Media Manager Video Playback Issues
    Media Manager General (Other) Issues
    Please post your Media Manager issues in the correct corresponding thread so that our FSC employees can identify and begin to resolve some of the problems being experienced by our Media Manager customers.
    Thank You!!
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

    I can understand your point of view and I respect it in regards to Small Basic being a learning language. None the less, let me make a suggestion that would be more ageeable, I think,  to different kinds of people. Why not make different versions
    of this new language: version 1 for beginners that I heard would be out by the end of this year,
    version 2 for intermediates and version 3 for more advanced programmers. All this would culminate to the Visual Basic language. These 3 versions would smoothe out the gap between SB and Visual Basic. Your new programmers would
    evolve at the same time your versions would come out and Microsoft would have a long term policy of loyal programmers. 

  • Jabber for iPad video issue

    How can I troubleshoot video issues?
    I setup the iPad device (G711) and then placed a call to a Jabber for Windows (G729) phone. Audio worked fine but no video. I changed the Jabber for Windows to G711 and video started working?
    Is Jabber for iPad going to support G729 and if so when?
    Thanks,
    Doug

    Hello i have the same issue!
    Someone find the cause for this issue?
    Regards
    Leonardo Santana

  • Kernel Panic on iMac with Pixelated Video Issues

    One of our work iMacs has been having weird pixelate video issues recently. Sometimes previews of program windows will freeze on screen... and as you move the window around the screen "erases" this preview from the LCD... It is a 2006 24" White iMac 6,1. Now we get some Kernel Panics with the following error message. Please help me decipher it. Thanks!
    Interval Since Last Panic Report:  8641685 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    E865F049-A575-4D59-A574-9D24C6EFD141
    Fri Mar 30 07:35:41 2012
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x43923bb8 : 0x21b837 (0x5dd7fc 0x43923bec 0x223ce1 0x0)
    0x43923c08 : 0x2abf6a (0x59e3d0 0x53c01f 0xe 0x59e59a)
    0x43923ce8 : 0x2a1a78 (0x43923d00 0x0 0x43923da8 0x53c01f)
    0x43923cf8 : 0x53c01f (0xe 0x48 0x10 0x10)
    0x43923da8 : 0x53d2f5 (0x78f3000 0x785c240 0x43923df8 0x78f3000)
    0x43923dc8 : 0x570fcd (0x78f3000 0x785c240 0x43923de8 0x2a45c9)
    0x43923e18 : 0x28bb49 (0x78f3000 0x749a4a0 0x749a4b8 0x2106d8)
    0x43923e58 : 0x21dbe5 (0x749a0a4 0x749a484 0x43923ea8 0x3a23)
    0x43923e98 : 0x210a86 (0x749a000 0x0 0xbc747a0 0x7f6b690)
    0x43923ef8 : 0x216f84 (0x749a000 0x0 0x0 0x0)
    0x43923f78 : 0x295c57 (0x7daf5e8 0x0 0x0 0x0)
    0x43923fc8 : 0x2a256d (0x7daf5e4 0x0 0x10 0x0)
    BSD process name corresponding to current thread: Dock
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac6,1 (Mac-F4218FC8)
    System uptime in nanoseconds: 154254231492
    unloaded kexts:
    (none)
    loaded kexts:
    com.apple.driver.AppleHWSensor          1.9.3d0 - last loaded 121081986701
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.CSRHIDTransitionDriver          2.4.5f3
    com.apple.driver.USBCameraFirmwareLoader          1.1.0
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv40hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.CSRUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.driver.XsanFilter          402.1
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac6,1, BootROM IM61.0093.B07, 2 processors, Intel Core 2 Duo, 2.16 GHz, 4 GB, SMC 1.10f2
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: ST3320620AS, 298.09 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-85J
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8501, 0xfd400000 / 2
    USB Device: Express USB2, 0x0dc4  (Macpower Peripherals Ltd.), 0x00db, 0xfd500000 / 3
    USB Device: Hub in Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x1003, 0x1d100000 / 2
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc50a, 0x1d110000 / 4
    USB Device: Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x020b, 0x1d130000 / 3
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x7d100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8240, 0x7d200000 / 3

    Re: Kernel Panic on iMac Intel Core 2 Duo with Lion 10.7.1, 4gb RAM
    27-sep-2011 11:53 (in response to jose guzman) Launch the Apple Hardware Test program, run the extended tests at least twice, and then download and run Rember. All indications are that you have bad or flaky RAM.
    27" i7 iMac 10.6.8 , Mac OS X (10.7.1), G4 450 MP 1.5 GB RAM w/(10.5.8/10.4.11/9.2.2) 
    I did that and it doesn't work

  • HT5313 What video issues were there on 10.7.4 that got fixed in 10.7.5? Any details?

    The OS X update bulletin for 10.7.5 lists that one of the fixes in this update is
    * Resolve a video issue with some VGA projectors when connected to certain Mac notebooks.
    What is really being addressed? Any details?

    Hi Tony, Ben and others,
    I'm not sure it was the same problem, but a little while ago I have problems too with RADIUS not working on Lion,
    and by searching for solutions I found out that it's necessarily to edit /etc/raddb/clients.conf
    My problem here it didn't work was with the shared secret.
    So I edited /etc/raddb/clients.conf and put at the end of the file :
    client  10.0.0.0/24 {
            secret          =  shared-secret-type-what-you-want-here
            shortname       = private-network
    BEFORE I started RADIUS and added AE's to it
    I hope it solves your problem too …
    GreetingZz John
    PS For some strange reason I had to change the
          'Wireless Security" from WPA2 Personal ---> WPA2 Enterprice on each AE manualy
         But maybe that's just a little bug in when opening the AE in Airport Utility 6.1 cause is WAS
         working before I looked into the AE's
    PPS iPV6 not changed here
    Message was edited by: Abhor

  • How can I create a pop up window for a Windows Media video file in Dreamweaver CS6?

    I have a Windows Media video file on my homepage that plays automatically when you go to the website. I'd like to change my homepage. I now would like to place text that says "click here to play the video" and I'd like a pop up window to open and play the video. I'm using Dreamweaver CS6. Your help will be appreciated. Thanks.

    BlueSapphire777 wrote:
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    Is the code you told me about (above), is it necessary for older browsers such as ie8? I thought you were saying it was for the HTML5 tags and I wasn't sure I'd bother with it. If it helps people with ie8, I probably should add it.
    I include it (or a link to a localized copy of the file) by default now.
    To truly support the ancient browsers out there, you'd likely need something like...
    <video width="500" height="500">
        <source src="video.mp4" type="video/mp4" />
        <source src="video.ogv" type="video/ogg" />
        <source src="video.webm" type="video/webm" />
        <object width="500" height="500">
        <param name="movie" value="video.swf" />
        <embed src="video.swf" width="500" height="500"></embed>
        </object>
    </video>
    I don't bother with a Flash fall back for old browsers though. I just put in text letting the viewer know they're behind the times pretty severely, like...
    <video width="500" height="500">
        <source src="video.mp4" type="video/mp4" />
        <source src="video.ogv" type="video/ogg" />
        <source src="video.webm" type="video/webm" />
        <p>Your browser is horribly, helplessly and hilariously outdated. Visit <a href="firefox.com" target="_blank">www.firefox.com</a> to download something better, more secure, modern, worthwhile, etc, etc...</p>
    </video>
    For junky old browsers that can't see any HTML5 (which the <video> and <audio> tags are), they get a text message to get something better and a link to go there.

  • Audio and Video issue with Windows 8.1 upgrade on Ideapad n585

    I upgraded my Ideapad N585 to Windows 8.1 the other day, took forever, but it made it through.  Unfortunately, I now get boot erors for the Dolby software, and the AMD Vision/Catalysyt Control Center.  Neither of these programs are able to start, from startup or even manually.  They just won't run.  Sound seems to come out fine still, but I do have video issues. 
    First off, my computer doesn't seem to recognize a HDtv as a monitor through the HDMI port.  I still get an image, but it's set to current screen resolution instead of 1080i.  I tried using the detect button to force it to look for a second monitor (my TV), but it showed nothing connected, though at the time I was using two screens.  Now my monitor's screen resolution seems to be a little higher than my TV's, but it doesn't fit the screen properly, and will sometimes put a black border around the desktop, not using the full screen.  I have also noticed, that when plugged into the tv, if a background program like a screen saver starts (and I am one of the few people who still use them, I like BOINC, sue me), it will reset the screen resolution to what it requires.  When the program exits, the screen resolution stays, and that becomes the new max screen resolution until I restart the computer.  So far, it only does this through the tv, if I run the laptop monitor alone, it doesn't happen.
    I did try updating the software with what's available through the support site, but nothing happened.  I even went as far as to use the Windows 9x~XP standbys of completely uninstalling, manually removing everything from the system registry I could find relating to these two programs, and then finally reinstalling the software.  Giving the audio and video a complete clean slate to work from, and got no positive results.  I restart the computer, Dolby and Catalyst won't boot, and blind to HDtv.  Problems as described above still apply.
    Anybody else have this issue?  Anybody got a fix?

    have you found a solution to this?
    My computer updated to 8.1 without my wanting it to, I have the same problems as you. I installed the video driver because the brightness was locked on what I had it. (the bar would move but did not change)
    I searched for brightness and n585 and I was able to find a driver, now brightness works but HDMI still does not. When I plug in the TV both screens go black with all 4 options in the "project" screen.
    *edit*
    this worked for me i stumbled across this
    I unplugged the power cable with the hdmi cable plugged in. Hit (windows key+p) scrolled to duplicate and it worked.I plugged in the power cord back in and it still worked. 

  • Video issues in mac os 10.6.4 and windows 7 64x

    To start with, my computer is the late 2008 model Imac, has 3g of memory, and wasn't experiencing any video problems until earlier this month. I've already had it serviced, and was told that the issue was resolved, and was unrelated to hardware. Fifteen minutes after repair and setup, the exact same symptoms occur.
    I'm thinking, Ok, perhaps this is a bad install of windows, since it happened in a windows program (everquest 2, an online game), and rebooted into Mac. Almost immediately, I saw video problems (snow, pixels, lines, distortion)on the mac side, which had occurred with the windows side.
    My husband is angry, I'm angry, so I decide that I'm going to trash everything and start off completely fresh. I intended to reinstall mac 10.6.4 after erasing everything, so I removed the windows partition, and attempted to reinstall snow leapard, without using the original leapard disc that came with the system. I didn't realize until too late that I had forgotten to erase the original os, but I figured I'd see if there were any problems and go from there. I had no initial problems with the install of either os (mac or windows), except to note that I couldn't install the apple software updates on the windows side. I was able to fully update the mac side before attempting any installation of the windows os.
    I started having video problems really quickly in the windows side after the full installation and update, but the system disabled the initial nvidia drivers and went to plug and play drivers. The only thing that displayed any further problems was the ISight camera, but that was to be expected without the apple updates.
    I did read the bootcamp manual afterwards, and saw that my IMac, being an earlier version, might not properly install bootcamp drivers for windows 7 64x, although we had successfully located and manually installed the drivers earlier when first installing windows 7 64x. Keep in mind, I'd had the os installed for several months without any video problems, and in fact, it worked like a dream in both os after the computer had a previous repair of the hard drive, sound card, and logic board.
    Anyway, to continue, after the video symptoms occurred on windows, I switched back over to mac to look for and install a video firmware download that I had located through these same forums. I had to change os because it was a dmg, so I did so. Now, I still had the snow leapard install disc in the computer, so that's the first thing I saw on the screen when booting into mac. I immediately started also seeing the pixels and some distortion, but it stopped briefly. I tried bringing up Firefox to get to the download, but the computer froze (showed the little round ball)and wouldn't respond further. I tried several reboots, and could usually at least get into snow leapard, but the computer froze each time.
    Finally, after several attempts, the computer won't boot into either os, and won't go into the install disc either. I'm completely at a loss, because I'm told this IS NOT a hardware issue, and the problem was resolved with simply resetting everything. The problem was NOT resolved with that reset, because I'm able to reproduce this issue consistently with multiple reboots, and have even recorded it with a camera I have. I'm at my wit's end, because I'm on a fixed income, and this costs me time and money I just don't have. It's caused me to get behind on one of my bills, because I have to have a computer, and further repairs, while covered under warranty, are going to cost me further money to get to and from the service center. Not to mention the fact that it's going to take another month for me to wait for my money to become available so that I can pay for the ride back and forth for the repair.
    Anyone, anyone at all, have any suggestions that may help? I have access to another computer, and can try using that computer to help me boot the other computer up, if I know how. Please, this is so frustrating to me, so I'm hoping someone can suggest something that may help.
    I know I mentioned in the post what type of video issues I'm experiencing, but I figured I'd reiterate to make it easy. The computer will display a distorted image on bootup, like a pixelated off-center image. You know, kinda like 2 punch cards held up to each other, with the same holes, but off center. You also get snow, when able to boot up, with the screen sometimes showing half the screen, flickering. Like the screen is broken, but it's not even scratched. And it's not all the time either, if it was, I would think maybe an internal screen was broken or cracked (I've worked tech support for devices with internal screens, so I understand you can have a perfectly good outer screen, but a cracked inner screen). Right now, on bootup, I get that punch card effect, then the screen goes blank. I should mention that sometimes the system will show that, but then boot into windows with no immediate distortion, but will show distortion in the mac side if I'm able to boot into snow leapard. Hope this information helps someone give me an answer that helps.

    To start with, my computer is the late 2008 model Imac, has 3g of memory …
    I'm assuming you mean the Early 2008 iMac since there is no "late 2008" one. AFAIK, it came with 2 GB of RAM standard & the common BTO option would have been 4 GB, so can we assume that you have installed an aftermarket memory module to get to 3 GB?
    I've already had it serviced, and was told that the issue was resolved, and was unrelated to hardware. Fifteen minutes after repair and setup, the exact same symptoms occur.
    What repair and setup? Is this something you did after getting the iMac back from service? If so, what exactly did you do?
    I had no initial problems with the install of either os (mac or windows), except to note that I couldn't install the apple software updates on the windows side.
    Do you mean the Windows drivers or something else? Did you follow the Bootcamp install procedure exactly when reinstalling Windows or not?
    I switched back over to mac to look for and install a video firmware download that I had located through these same forums.
    What video firmware download do you mean? AKAIK, there are none for early 2008 iMacs.
    No offense intended, but it is hard to understand exactly what you have done because while you mention much, you don't say a lot about the specifics for a lot of that. In general, it is best to concentrate on those things & keep the commentary to a minimum.

  • Video Issues in Adobe Presenter 9

    Video issues - I have inserted a 3 minute video in a Presenter 9  file and it plays fine when previewing but only 6 seconds when published. Plays 6 seconds and then buffers.  I have tried inserting  different formats and still get the same results.  Anyone else have this issue or ideas on how to resolve?

    Hi there,
    I got a solution from the Adobe Captivate technical team.
    As an attempt to resolve your issue
    Uncheck the option “Accelerate 3D graphics” under VM Settings by going to VM >> Settings >> Display>> 3D graphics
    Once done please try capturing and hopefully this must resolve your issue
    I did this and it worked, yeah. However, it is still incredibly frustrating using VMWare, when I am recording using Presenter it keeps freezing and I have to shut the entire system down. Guess I'll try the Partition!!!
    Thanks again

  • IMac G5 video issues.

    I have a iMac G5 20" 2.16 s/n W86494YZVUV that has a serious video issue. What appears to be a set of small lines appears on each side of each icon and the cursor.  Additionally, large random angular spikes appear all over making the display virtually unreadable. Is there an economic solution to this issue or is it a throwaway?

    Hello.
    Once my iMac G5 experienced this blue tint problem.
    The solution was to:
    Open System Preference > Display.
    Click on the highest resolution.
    Close Display pane.
    Close System Preference.
    Hope this helps.

Maybe you are looking for

  • Tried to link iTunes on external hard drive to new Windows 7 PC

    I tried to follow the steps on another discussion to link my new PC to my iTunes library on external hard drive, but I've completely messed it up and now my old computer nor my new computer can find the files!  Help?!

  • CS6 Bridge startup scripts, AGAIN!

    Had the same problem with CS5 and beta CS6, Bridge startup scripts won't load, meaning the outout pane is blank. Over the past 2 years, 2 different computers, 3 hd's, clean installs on all and I keep getting the same problem. This time, standard inst

  • Bold 9700 Memopad files lost?

    Hey everyone, I've been searching the forums to try to find a solution for this and while some people have had similar issues, they are slightly different than mine. I took a bunch of notes on my Bold 9700 memopad between 2011-12 and synced them with

  • Flash player not working with Firefox 5

    Hi all: I have been having problems with my Firefox 5 (also was happening with 4) and the Flash Player (newest and previous versions also). Basically, whenever I open a page with flash content, Firefox gets frozen and "not responding" appears on the

  • TS3742 panic(cpu 0 caller 0xffffff802c859241): "Unable to find driver for this platform:........

    Hopefully someone can help. My Macbook Pro came up with this error when starting up and I can't get rid of it. Have tried starting up in safe mode using the Shift key however that doesnt do anything. I get the same message. I don't appear to have the