No Video Playback in CS4

I was editing on a friends CS3 and captured a load of miniDV old tapes, then we exported the clips as uncompressed avi's (I did a screen shot of one of them on gspot) all in the same project.
And despite being all playable and editable on his CS3 they will not work at all on my CS4.
All I get is a turquiose screen when paused and a black one when it plays. I hear the audio fine, and there are thumbnails in the top left tiny player, but whether its on the preview or the timeline I have the same screens.
I have installed all my drivers and codecs and updates.
Done everything for it to work but it won't.
I even brought the whole project over and after it converted to cs4 format it still didn't work at all.
I had some other footage captured on my uni's cs4 and even that won't work.
All the footage plays fine on my uni's CS4 but not mine.
I looked on the forum for similar issues, and found a few solutions none of which worked.
What should I do?
I'm on a Dell Inspiron 1721 Laptop
AMD Turioin 64X2 mobile technology 2.00GHz
Windows Vista Home Premium 32Bit

After literally 12 hours, 2 re-installs, searching everywhere, asking on here, I found the solution.
Sorry if it seems obvious to most but I'm going to explain incase anyone else ever gets this issue again.
I had stupidly forgotten to include my Graphics card/integrated to mobo (i got it mixed up with my processor), it is an ATI Radeon x1270, and dispite Vista and every driver website saying the driver was up to date, it wasn't, by a long shot.
AMD distribute its drivers via the Catalyst Control Centre Software, so you need this to update ya drivers. Once i did that it worked fine and dandy.
You can get it on here: http://support.amd.com/us/Pages/AMDSupportHub.aspx
Moral of the story: no playback in Premier, it is almost definately the Graphics Card driver!
Thank you everyone here for your time and patience.

Similar Messages

  • Flash Video Playback problem in CS4/CS5

    I need to put a Flash Video on my website, embedded in one of the existing html pages.
    When my developer puts together a Flash Video in Flash CS4 or CS5 using ActionScript 3, the video does not play - t just keeps buffering (showing a striped appearance on the seek bar) and will not play unless I refresh the browser.
    I've tried copying the code from the html page that came with the set of swf and flv files and that doesn't work either.
    Just inserting the swf file into the web page like we used to do in CS3 and earlier does not wor.
    I noticed that now with ActionScript 3 there is no ACRunActiveContent.js file.
    Videos created using CS3 and ActionScript 2 seem to work just fine on web pages.
    Wonder what i can do to use CS4 and CS5 videos and have them play on html pages?
    Any ideas anyone?

    Just to clarify:
    Creating a Flash Video swf in CS5 (or even CS4) with ActionScript 3 requires the video to be embedded in the web page a bit differently than we were used to with CS3 and AS2.
    While the newer versions of Flash do use a different method (using swfobject) when "Publishing" a Flash .swf, it is NOT required to do so. In fact neither swfobject nor ACRun... are required to display Flash of any version (AS1, 2, or 3) on a Web page. The simple single object method will work just fine:
    <object data="path_to_file/file.swf" type="application/x-shockwave-flash" width="insert_width_of_movie" height="insert_height_of_movie">
      <param name="movie" value="path_to_file/file.swf">
      <param name="SomeOtherParam" value="ParamValue">
    </object>
    Both ACRun and swfobject are "Flash Detection" methods used to display some alternative content if Flash is not detected... they are NOT needed to simply display the Flash .swf.
    However, you can't use half ACRun code and half swfobject code....it must be either one or the other... and either would display AS3 players just fine.... as would the single object method.
    Best wishes,
    Adninjastrator

  • Multiple video playback issues

    Hi All,
    I would dearly appreciaty any light anyone could shed on this issue - I have run into a couple of Flash bugs that have stumped me for quite a while, and my deadline is aproaching fast.
    Essentially, I would like to play back 3 reasonably high res videos (On2 VP6-S) simultaneously in one Flash App (using flash.video, netstream and netconnect - code only). Unfortunately, when I do this, the video playback drops a lot of frames, however, CPU usage does not go much above 50% - spread over both cores. I'm using a Core2Duo. If I play the same 3 videos simultaneously in 3 separate flash apps (FP10), they play much better (and use close to 100% CPU). I even tried creating it as an AIR app with 3 separate windows (NativeWindow), but that made little difference. I have lodged this as a bug via the Flash Bug Reporting System (http://bugs.adobe.com/jira/browse/FP-2341).
    And yes, I do need to be doing something as crazy as this - it is for a pretty cool kiosk app, so I know what hardware will be used (and it has a good Graphics Card).
    One promising workaround appeared to be playing back a single NetStream in multiple Video instances, as it is NetStream that does the decoding, so I could decode once and present it in 3 places. Two of my video objects are actually the same flv (on different monitors), so there would be a 33% saving right there. If necessary, I could encode both flvs into a single 1920x1200 flv (I've checked - it would play back ok) and then use video.mask to show the relevant bits.
    However, another bug has been reported at http://bugs.adobe.com/jira/browse/FP-920 saying this does not work - Video in the object that last called attachNetStream(ns) will play, all others will freeze. They do mention a workaround that gets both videos to play - reset the size of freezed videos on ENTER_FRAME event. However, I cannot get this workaround to work - my first video is empty (not even frozen).
    So there are a couple of things I would love any feedback on. Firstly, if anyone has insights on how I could get this to work. Secondly, if anyone could try the "multiple videos on one netStream with workaround" code below (simply copy, paste and point to a relevant flv) and let me know if it works and the versions of software they used, I'd be very thankful.
    ---------------Code Begins-------------
    import flash.events.Event;
    import flash.media.Video;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    showRedrawRegions(true); // both the placeholders and the entire window redraws every frame.
    // When only video1 is attached, only video1's region is redrawing
    // When both videos are attached, both video's regions are redrawing, BUT video1 is empty.
    trace ("Capabilities.version = " + Capabilities.version); // = WIN 10,0,22,91 // in Flash CS4 10.0.2
    //var nc:NetConnection = new NetConnection( null ); // Got Eror: 1137: Incorrect number of arguments. Expected no more than 0.
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    // Connect nc here ...? Unnecessary in this case?
    var ns:NetStream = new NetStream(nc);
    ns.client = new Object(); // Simplest way to deal with cuePoints and metaData by doing nothing. For more, see http://blogs.adobe.com/pdehaan/2006/07/playing_back_flvs_with_actions_1.html
    var stream:String = "test.flv";
    var video1:Video = new Video(); // Defaults to size of 320x240
    var video2:Video = new Video(); // Defaults to size of 320x240
    video2.x = 320;
    addChild(video1);
    addChild(video2);
    ns.play(stream);
    video1.attachNetStream(ns);
    video2.attachNetStream(ns);
    // PROBLEM: Video in the object that last called attachNetStream(ns) will play, all others will freeze.
    // See WORKAROUND below for solution:
    //WORKAROUND to stop the first split stream from freezing:
    addEventListener(Event.ENTER_FRAME, onEnterFrame);
    function onEnterFrame(e:Event){
    video1.width = 320;
    video1.height = 240;
    trace ("video1.videoWidth = " + video1.videoWidth);
    trace ("video2.videoWidth = " + video2.videoWidth);
    // When only video1 is attached, video1.videoWidth = 1920, video2.videoWidth = 0
    // When both videos are attached, video1.videoWidth = 0, video2.videoWidth = 1920
    ---------------Code Ends-------------
    Letting me know what exact versions of the following software was used would help a lot:
    - Windows/OS (e.g. XP SP3).
    - App code was written in. (e.g. Flash CS4 IDE 10.0.2, Flash Develop 3.0.1).
    - App code was compiled in. (e.g. Flash CS4 IDE 10.0.2, Flex SDK 3.4.0.6955).
    - Type and Version of Flash Player used (e.g. Standalone Debug Flash Player v10,0,22,91).
    The versions I used are listed above.
    Lastly, for what it is work, I found three interesting/informative results, but they didn't help me:
    - When only video1 is attached, video1.videoWidth = 1920, video2.videoWidth = 0
      When both videos are attached, video1.videoWidth = 0, video2.videoWidth = 1920
    - When only video1 is attached, only video1's region is redrawing
      When both videos are attached, both video's regions are redrawing, BUT video1 is empty.
    - var nc:NetConnection = new NetConnection( null ); // Got Eror: 1137: Incorrect number of arguments. Expected no more than 0.
      So I had to change it to:
        var nc:NetConnection = new NetConnection();
        nc.connect(null);
      Does this mean my NetConnection class is different and maybe incompatible with this workaround?
    Many, many thanks,

    How to view/hear pretty much everything:
    Assuming you already run OS 10.4.9 or above and have Quicktime 7.2, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer from http://uk.real.com/player/
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    The world should now be your oyster!
    You should also have the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • Video Playback In Acrobat 9

    I’ve been looking on this forum and if this problem is covered in another post, if you could point me in that direction that would be great. If you have an answer to this problem that would also be great.
    We build classroom presentations in InDesign and export them to PDF for final output. We use Acrobat Professional to place the videos, audio, buttons etc. Everything is currently done in Acrobat 6.0.2.
    We place the videos (not embedded) and play them with the built in player as the preference. We place .mpg movies that are H.264
    We have not had an issue with videos playing in various versions of Acrobat until Acrobat 9 came out. Our two most recent programs are having playback issues with Acrobat 9 but previous programs that were built the same way are running fine.
    We have switched up to InDesign CS4 from CS1. I have rebuilt part of a presentation in CS1 from the ground up but still have a playback problem in Acrobat 9 and Acrobat 9 with the small updates.
    Our classroom presentations are broken down into modules and are built with multiple PDF files, one for each modules. It starts with a tile screen and moving through a few files with buttons built in Acrobat you get to the various modules.
    Here are the playback issues.
    When we start from the title screen and use the links when we arrive at a video and click on the video it doesn’t play. If you then go to another module (different PDF file) and then back to the previous module (PDF file you were just at) and click on the video it will play.
    I then tested just opening the direct module that contains a video. If you open the PDF directly and click on the video it will then play.
    To do some further testing, with one of the modules containing a video, I removed all buttons in that file. When you then start from the title screen and navigate to the PDF file with a movie and click on it, it will then play. To follow-up on that test, I then added one button, navigated in from the title screen and then the video would not play.
    Each time I did a new test, I shut Acrobat down and started it fresh.
    If I did a test and got the video to play each of the following videos, in other PDF files would then play without any problem.
    Our classroom presentation are set in full screen mode with the video as a floating window. I did test it out of full screen mode, and the same symptoms happen for each scenario.
    Again, our previous 80+ programs are working fine, which makes me think there is something in CS4 that I am missing, but when I rebuilt part of on in CS1 it still had the same issues.
    Our material is built on Mac and in class run on both Mac and Windows machines. The video play back problem happens on both Mac and Windows machines.
    If I run it on Acrobat 7 or 8, everything works fine.
    We will be authoring on a newer version in the future, but currently I’m trying to solve this problem on the video playback in Acrobat 9 (with minor updates).
    If anyone has any insight into this issue please post a response.
    Thanks in advance for any help.

    Hey Steve,
    Thanks for the response. You are correct, we lay out the documents in
    InDesign, them export a PDF. From that point on we are doing all the linking
    and placing of video files in Acrobat 6.0.2.
    It has been a hard one to get consistent to trouble shoot out. We hit the
    glitch with 9 due to the new windows machines needing 9.
    I have been working in 9 a little and it seems like when I place a mpg file
    and accept that an external player will be used I can then choose the button
    tool and it recognizes the movie, almost like a button. I don't know if that
    is where some of the conflict comes from.
    Last week I talked to our IT department about needing to move up to 9 and
    getting comfortable with 9 before we transition as we will need to have all
    our instructor laptops currently in the field updated. The pinch is we are
    on a tight schedule and have to have two classes authored by mid-October.
    After that we can look into a transition, but right now I'm between a rock
    and a hard place for anyone with a new windows machine.
    John
    From: Steve Small <[email protected]>
    Reply-To: <[email protected]>
    Date: Thu, 24 Sep 2009 15:05:57 -0600
    To: John Vatne <[email protected]>
    Subject: Video Playback In Acrobat 9
    I'm sorry, John, it sounds to me like you are using the term 'Acrobat' to mean
    everything.  I'm wondering if the files are being authored/created in Acrobat
    6.0.2, then played back in Adobe Reader 9.  If this is the case, it certainly
    sounds like there may be a bug in 9.  However, I would highly recommend
    authoring these files in Acrobat 9.x Professional.  H.264 files are handled
    directly by the new Flash Tool.  I've tested what I believe are your steps to
    reproduce and my result worked fine.  I created a PDF that is just an H.264
    video and set its playback property to play when the PDF is opened.  I also
    set the PDF to open in Full Screen mode.  I then created a PDF that had
    nothing on it but a button that calls the first H.264 video PDF and the whole
    thing works great.  I did this all on a Mac.
    Anyway, let me know if I have that right; you're authoring all of these in
    Acorbat 6.0.2.
    >

  • Video playback in preview monitors appears as a jagged mess

    Video playback in the preview monitors appears as a jagged mess. The audio plays perfectly. I am using Premiere Pro CS4 4.2.1, only DV NTSC. I have checked all my settings, have found nothing that will fix this. What could be causing this problem?

    More computer information might help... http://forums.adobe.com/message/4200840
    Especially the exact brand/model of your graphics adapter (ATI or nVidia or ???) and the exact device driver number
    IF you have an nVidia card...
    Right click in any open area of the Windows desktop
    Select NVIDIA Control Panel from the popup window
    Select SYSTEM INFORMATION at the lower left corner
    Driver version should be the 1st line in Details
    >checked all my settings
    A screen shot works well to SHOW people what you are doing http://forums.adobe.com/thread/592070?tstart=30

  • Video playback in source monitor low res, fuzzy

    Hello-
      I encoded a slide show ( in PP CS4) using high res pics, the .avi output ( from Media Encoder CS4) looks good. When I use this as a clip in a new PP project, ( after choosing the editing mode with the correct PAR), the video playback in the source monitor has a distinct loss of resolution. I have verified that the video is pretty sharp in an external player, so I'm mystified why it looks fuzzy in PP. I have two different CSes, one is 4 and one is 5, if that could make a difference( production premium & elearning suite ). To date I have been forced to let another department encode final version with an Avid product. Very humiliating.

    I believe I accepted default settings in Media Encoder, Format: Microsoft AVI, Preset: NTSC DV, "Export Video "checked, Video codec DV NTSC, Quality 100
    Type: AVI movie
    Image Size: 720X480
    Pixel Depth: 32
    Frame Rate: 29.97 (24p)
    Pixel Aspect Ratio: 0.9091

  • Issue with video playback in Flash Player

    I am currently doing some voluntary work for my mom for the local branch of the Alzheimer Foundation. Now I have encoded a video to mpeg4/h.264 and F4V using the Adobe Media Encoder only I am having not much luck to get it successfully played. Now is my question what could I be doing wrong? I already tried to use ActionScript 2 and 3 and disabled GZIP compression on the server and even tried different files like H.264 and F4V.
    The strange thing is that the video always work just fine when being tested in Flash CS4 10.2 but when I tried it in the browser it fails. The Test Movie feature of Flash is using the following player version MAC 10,0,12,36. I am using 10,0,32,14 MAC in my Safari browser and their the movie plays fine once the file is fully downloaded (how can I change this?) only when let friends try it out which have version 10,0,32,18 or the same version it doesn't work for them. Also when I am using an older version doesn't seem to work. I thought that H.264 support was added in some version of Flash Player 9. One of the issues which I was getting that the video playback worked lovely in Test Movie with the below listed alzheimer.mp4 url but when testing after the SWF and HTML were uploaded to the webserver it failed to work and I was receiving a FileStructureInvalid error. Now I would expect that the video file would fail in Test Movie too when the video file structure is invalid.
    I have tried the following video files both encoded with Adobe Media Encoder:
    http://www.letslearn.it/dropbox/alzheimer.mp4
    http://www.letslearn.it/dropbox/alzheimer08.f4v
    The current player can be found at:
    http://www.letslearn.it/dropbox/alzheimer.html
    I have attached my As3 version of the Flash file which is normal easy video stuff.
    Anyone happen to know what could be the issue here? I am getting desperate!

    Yes, I have just used the normal Video-object together with the normal trick to load Flash Video files with it. Nothing special only with a full URL for the play()-method. I have attached the source code for your convenience. The original files are edited in Premiere Pro CS4 and are based on one original ripped DVD vob file and a newly created Quicktime-based slideshow animation which has then be edited into one using Premiere.
    After that I  have selected the sequence of the Premiere project which I have exported using File > Export which is using Adobe Media Encoder. For the encoding I haved used the Export Settings: "Format FLV | F4V", Codec On2 VP6 and then altered the video size and bitrate so that the file size gets smaller this is for the Alzheimer08.f4v file. The other file used the H.265 Web Medium profile with also the video size and bitrate modified after it got encoded and uploaded to my webserver.
    The original files used by the Premiere Pro project are:
    VTS_01_1.dv
    Type: DV Stream
    File Size: 2.6 GB
    Image Size: 720x576
    Average Data Rate: 3.4 MB/Second
    Compressor: DV - PAL
    Quality: Normal (3.00)
    SLIDESHOW 2.mov
    Type: QuickTime Movie
    File Size: 3.2 GB
    Image Size: 720 x 576
    Average Data Rate: 3.4 MB/Second
    Compressor: DV - PAL
    Quality: Most (5.000)
    Above information is obtained in Premiere Pro by selected Properties-option of the submenu when selecting the file.
    Hopefully you can use this information but I could upload the original Premiere Pro project over the next few days. If you would be interested in it.
    FLA file: http://www.letslearn.it/dropbox/alzheimer.fla

  • Video playback not working

    Greetings:
    I realize that this has been covered in past threads but I am not sure how to dig those up, so I figured I would just ask here.  I loaded Premiere Pro CS4 on my brand new laptop Windows Vista 32bit and when I go through the Adobe Classroom in a Book lessons the video playback is not working, but I can hear the voices...not sure why.  Also when the videos that are imported into the project I can see that there is proper video but when I try to play it back, I have no luck.  Even the fast preview that you can use under the Project tab is not playing.  Like I said, I can hear the sound of the video fine but as to the play back no video.  I have checked and my Quicktime is the newest version and my Premiere Pro CS4 is completely updated to the latest version...any help here would be appreciated.

    So I think I have resolved this...I went back and loaded an older driver and it all seemed to work fine.  Sorry to post this.

  • Controlling Speed of audio and video playback ?

    Hi!
    I would like to know if there is (or will be) a way with
    upcoming Flash CS4 or even with Adobe Flash Player 10 capabilities
    (or even with Adobe Pixel Bender) to control the speed of an audio
    or video playback.
    For example being able to play some sound slower or faster
    and even adjusting audio pitch (and other audio filtering).
    It's been a while that I've been looking for this (back to
    Flash Player 6 when Flash was part of Macromedia) and with all
    progress achieved since then I hope there is some accelerate and
    decelerate feature now.
    Please let me know about it.

    More information needed for someone to help... click these links and provide the requested information
    -http://forums.adobe.com/message/4200840
    -http://forums.adobe.com/thread/416679
    -http://forums.adobe.com/thread/419406
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30
    For PC http://mediainfo.sourceforge.net/en or http://www.headbands.com/gspot/
    http://blogs.adobe.com/premiereprotraining/2011/02/red-yellow-and-green-render-bars.html
    If you have a red line over the timeline after importing a video and before adding any effects... your project is wrong for your video... read above about codecs
    Once you know exactly what it is you are editing, report back with that information... and your project setting, and if there is a red line above the video in the timeline, which indicates a mismatch between video and project
    Also, H.264 will NOT work inside an AVI wrapper http://forums.adobe.com/thread/854115

  • Issue with video playback

    I'm having an issue where video playback drops to 1 frame per second or less. The problem occurs when I have the mouse on the same screen as the video (dual screen setup) or on the second screen.
    As you can see in my information, I'm running an IBM Thinkpad T43 with a Viewsonic q20wb monitor.
    Thanks for the help!

    Yes, I have just used the normal Video-object together with the normal trick to load Flash Video files with it. Nothing special only with a full URL for the play()-method. I have attached the source code for your convenience. The original files are edited in Premiere Pro CS4 and are based on one original ripped DVD vob file and a newly created Quicktime-based slideshow animation which has then be edited into one using Premiere.
    After that I  have selected the sequence of the Premiere project which I have exported using File > Export which is using Adobe Media Encoder. For the encoding I haved used the Export Settings: "Format FLV | F4V", Codec On2 VP6 and then altered the video size and bitrate so that the file size gets smaller this is for the Alzheimer08.f4v file. The other file used the H.265 Web Medium profile with also the video size and bitrate modified after it got encoded and uploaded to my webserver.
    The original files used by the Premiere Pro project are:
    VTS_01_1.dv
    Type: DV Stream
    File Size: 2.6 GB
    Image Size: 720x576
    Average Data Rate: 3.4 MB/Second
    Compressor: DV - PAL
    Quality: Normal (3.00)
    SLIDESHOW 2.mov
    Type: QuickTime Movie
    File Size: 3.2 GB
    Image Size: 720 x 576
    Average Data Rate: 3.4 MB/Second
    Compressor: DV - PAL
    Quality: Most (5.000)
    Above information is obtained in Premiere Pro by selected Properties-option of the submenu when selecting the file.
    Hopefully you can use this information but I could upload the original Premiere Pro project over the next few days. If you would be interested in it.
    FLA file: http://www.letslearn.it/dropbox/alzheimer.fla

  • Video playback slow and audio drop out after render

    Hi
    I have downloaded a trial version of After Effects from the cc,
    Problem is everytime I render ou,t the video playback is slow and the audio drops out
    This happens with AVI or Quicktime files.
    Using a Intel i5 quad core, 8 gig of ram 250 gig ssd.laptop
    Render/export in Premire pro is fine.
    Can any one help.
    Regards Phil Green
    Blue Room Media.

    It sounds like you might be hitting the space bar in hopes of getting real time playback.  Sorry, but AE doesn't work like that, because it does totally different things from an editing application like Premiere.
    And if you've downloaded the tryout version, you really ought to learn how AE works... and a short description is "it doesn't work intuitively".  You can frustrate yourself in a hurry.
    But this can really help;
    Getting started with After Effects (CS4, CS5, CS5.5, CS6, & CC) | After Effects region of interest

  • Can't hear recorded sound during video playback

    I take a lot of videos of my kids.  I have noticed lately that the volume is low or muffled...you can't hear what is being said even if they are screaming 6 inches away.  I thought maybe something had gotten into the microphone, etc.  I recorded a voice memo and on playback i could hear what was recorded just fine at a normal level. Now once I tried to record a video of my kids talking, it played back so low that i can't hear anything and that is with the volume turned wide open.  Not really sure what this issue could be but if the volume works fine on voice memo wouldn't it work the same on video playback? 

    Hi there AmPriSi,
    It sounds like you may be experiencing a microphone issue with your iPhone. Use the following article to help you address this issue:
    iPhone: Microphone issues
    http://support.apple.com/kb/ts5183
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • ITunes / Windows Video Playback.. (what, you actualy want to WATCH vid's?)

    I'm sure there are several people out there that are having the same or similar problems, but because I can't seem to find them with the exact problem I'm having, I thought a new thread would be appropriate....
    Upgraded from 6 to 7 yesterday... music seems to play OK (not as good as 6, but not all the issues other people are having). Now video playback in iTunes is little more than a slideshow with audio to (almost) match.
    When I go to play back any vid podcast, or other video in my library for that matter, iTunes bumps my processor up to 100% and holds it there, and the video does little more than skip and bounce through the entire playback (even if the overlay controls go away fully, the slightest mouse movement brings them back). The audio quality seems to almost follow the video, but they get away from each other (the audio was about 2 seconds ahead of the video/slide show while watching the current version of Photoshop TV). Any other video player works fine, but if I wanted to use them, I would have never installed iTunes in the first place, the idea being that the integration was the blessing.
    I USED to be able to watch a video, use Photoshop CS2, have Flash 8 open behind it, After Effects running on a seperate monitor, browse the web, and play freecell all at the same time, with several background utility style apps going all at the same time with out a hickup.
    After trying the IDE fix's, the sound setup fix's and any other fix's found in the discussions (and yes, reverting them after they failed to fix the problem), I'm still having an issue, and now I can't find iTunes 6 to try to get back to a good time in life... oh why oh why apple, why do you have just as many issues as windows? I had hoped for so much more....
    Anyone? Any Ideas? Anyone willing to email me itunes 6 so I can get back to a better time in life? Or provide answers? I've got a horriable track record with apple (over 20 business stopping questions, and to date 0 responses) so I am about 2 minutes from giving up
    Sorry apple, but this is way past frustrating... were all your win/tel beta testers using mac's?
    HomeBuilt Windows XP Pro ATI 9700 Pro / AMD Athlon 64 3800+ / hampster on treadmill running his head off...

    Are sure that's not Flash needed for those videos?

  • How can i monitor network traffic to debug video playback issues from a NAS?

    I am having problems playing videos on my new Mini that i am using as an HTPC. 
    I have a brand new Mac Mini running Lion with a 2.7 i7 processor and 8GB of RAM with a wired connection to a switch. .
    My switch is a NETGEAR ProSafe GS108T-200NAS set to default settings. I haven't had a chance to start messing with VLAN settings or anything else. There is a bit of a learning curve on my part on this end.
    My NAS is a ReadyNAS Pro (RNDP6000) with 3 x 1 TB hitachi ultrastar (HUA722010CLA330) drives and a 1.5 TB seagate (ST31500341AS) drive setup in RAID config using X-RAID2.
    The problem I am having is video playback when accessing large video files off of the NAS.  These are typically 1080 HD mkv files. 
    I have tested movies as small as 7.5GB with only slight stutters on occasion.  I tried a 10.5GB movie and the stalling was much more pronounced. Movies larger than 11GB are completely unwatchable stalling every minute or so. 
    I have also tried large movies on the local drive and that is not a problem at all - they play back just fine.  Beautiful playback in hidef.  Mind you, some of these are the same files that were stalling over the network.
    I have also noticed that some other network devices get kicked off the network when a movie is playing.
    I think it has something to do with the transfer speed of files over the network and the switch - i am no expert at this mind you.
    I am wondering if there is some sort of utility that i can use to monitor network activity on the mini so that i can fix my problem.  Or has anyone made chages in their switch settings to optimize data trasfer speeds.
    Any advice or recommendations on. 
    Thank you all!

    OK, I did a couple of things and ran things a couple of times. 
    First what I did settings wise:
    I enabled jumbo frames on the Mac Mini, ReadyNAS Pro, and the Netgear GS108T switch.  All with MTU set to 9000.
    I went ahead and enabled jumbo frames on the rest of the computers on the network just in case.
    After these changes I ran into the same problems with videos timing out - very annoying and frustrating as you can imagine.
    Then I started playing with device configurations.  My original configuration was NAS > Netgear switch > Mac Mini. I went ahead and switched the switch to an Airport Extreme I have as my WAP and the setup looked like this - NAS > Airport Extreme > Mac Mini. 
    Well, long story short, no go.  It appears to me that the NAS is the one having issues providing the necessary data at the proper speed.  I also tried playing sopme movies off of the NAS onto a desktop i have and had the same issues - choppy frames and crashing movies.  I even tried connecting wirelessly to see if that would work. 
    BTW, I have the Mac accessing the file system using CIFS. 
    I don't know what else I could do.
    I am going to have to go to the Netgear forums to see if i can figure this out.  Hopefully, I can get things going to be able to help some people out.
    If anyone has any ideas, they would be greatly appreciated.
    My only other alternative is spending $2000 for the thunderbolt capable NAS that Apple sells - it's only money!
    Cesar

  • Apple TV 2 choppy video playback when mirroring from Macbook Pro (Yosemite) and Macbook Air (Yosemite) but not iOS devices

    Video playback is choppy (cuts out every 30-45 seconds) when air playing from both my MacBook Air 1.3 GHz Intel Core i5 running Yosemite and my husbands new MacBook Pro, but runs perfectly when mirroring from any of our iOS devices (iPhone 6+, iPad mini 3, etc.) We have Apple TV 2. This problem just started a few weeks ago, was working fine around Christmas. The problem seems to have coincidentally started right after our son tried plugging in and setting up his Chromecast on our tv. I disconnected the Chromecast, but we still have the problem. All of our software if up to date and I've tried disconnecting blue tooth, we do not have a microwave and our wifi network has a very strong signal. We have an Airport Extreme base station. Is there a solution to our problem?

    Hi leahmturner,
    I see that you are experiencing an issue with choppiness while AirPlay Mirroring from your computers to your Apple TV. I have an article that contains some helpful troubleshooting steps for you regarding this issue:
    About AirPlay Mirroring in OS X - Apple Support
    http://support.apple.com/en-us/HT201343
    Optimizing image quality
    Resolution matching modes
    You can choose between two desktop resolution matching modes that let you select which display will have the best image. When AirPlay Mirroring is turned on, select an option under "Match Desktop Size To:" in the AirPlay Mirroring menu extra.
    Match Desktop Size To: Apple TV
    AirPlay Mirroring changes the desktop resolution to best match your Apple TV, resulting in a 16:9 image that fills the HDTV screen. This setting often produces the sharpest image on the HDTV. The aspect ratio and/or resolution of the built-in Mac display may change to accommodate the Apple TV.
    Match Desktop Size To: This Mac
    AirPlay Mirroring scales the contents of the desktop to fit on the Apple TV, leaving the resolution of your Mac's display unchanged. Use this setting for the sharpest image on your Mac's display. Depending on your Mac model, the resulting image may not fill the HDTV screen.
    Troubleshooting AirPlay Mirroring
    If you don't see mirroring options
    If your Mac and Apple TV are on the same network, but no AirPlay Mirroring menu appears, your Apple TV may be asleep. Simply press a button on your Apple TV remote to wake it up. After a few seconds, the AirPlay Mirroring menu extra appears. If you still don't see the options you expect, make sure your Apple TV has the current software update installed. Also make sure that you have the "Show mirroring options in the menu bar when available" option selected in the Displays pane of System Preferences.
    If the menu bar or Dock is cropped
    Some HDTVs have bezels that cover a small percentage of the screen. This can result in a slight cropping of a full-resolution HDTV image. Depending on the HDTV model, AirPlay Mirroring may automatically adjust the picture size to prevent cropping.  If you are using OS X Mountain Lion or later, and you see cropping of the menu bar or Dock when using AirPlay Mirroring, toggle the Overscan correction option in Displays preferences.
    Minimize video post-processing
    HDTVs often apply picture quality enhancements intended to improve the look of film and video sources. In some cases, these enhancements can lead to over-sharpening artifacts when displaying your Mac desktop. Some HDTV models have built-in settings to change or disable the enhancements for use with a computer (computer, presentation, or game modes). Otherwise, the controls for sharpness, detail enhancement and noise reduction can be used to optimize the appearance of the Mac desktop. Consult your HDTV’s manual for guidance on the appropriate settings for use with a computer.
    Firewall security settings
    If you use a firewall, make sure the following firewall security options have been set to allow AirPlay Mirroring to work:
    Choose System Preferences from the Apple menu ().
    Click Security & Privacy, then click Firewall.
    Click the lock icon to unlock it if it's locked, then type an administrator name and password.
    Click Firewall Options.
    Deselect (uncheck) the “Block all incoming connections” checkbox.
    Select (check) the “Automatically allow signed software to receive incoming connections” checkbox.
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

Maybe you are looking for

  • What's the Name and PWD in JCO Creation ?

    Hello All,         I want to create a JCo Connection. These are the steps which I've followed :- 1. Logged on to the Portal with username and PWD. 2. Went to the WebDynpro Tab. 3. Clicked on Create JCo Connection 4. Entered the details :-            

  • Flash 10.1 Restarts all the time in Facebook games

    Win XP Pro Sp 3 256MB Mem Problum with IE7 So I upgraded to IE 8 and same problum New Windows Install (4 Months) When I use a progrem/game that used Flash. the windoe will close all of sudden sometimes I can play for a ewhile and some times it happen

  • Swfobject or Adobe Embed Code

    What do you recommend using to embed SWF's? The Adobe Embed code: http://helpx.adobe.com/flash/kb/object-tag-syntax-flash-professional.html Or swfobject? Adobe code is a simple copy and paste. With swfobject it looks like I install the swfobject libr

  • Error 1406 during installation, nothing fixes it!

    Hello esteemed forum! I've tried everything that is listed by Apple to get iTunes to install but I'm still getting the same problem. There shouldn't be any adminstrative privileges issues on my PC because I am the only one that uses it and I've never

  • Dynamic Picture Counts

    In LR b4, the picture counts in the folders list were dynamically updated based on any filters applied (e.g 4 stars and higher), but this doesn't seem to work in v1.0. Is this something that was removed from v1 or am I missing a setting or something?