Video Buffering problem

I have a brand new laptop with Windows Vista on it. I am experiencing issues with certain Videos starting and stopping in iTunes....the audio works correctly but the video starts and stops. I've updated all software to current versions and searched the internet for answers with no success. Any tips or hints on what I might be able to do to resolve this would be appreciated. These same exact videos DO NOT have this issue on my WINXP desktop.
Thanks in advance,
Al

I am having the same annoying problem with a brand new HP (running VISTA) and this is totally ridiculous. 2.3 GhZ processor, 2 GB of system RAM, 128 MB of Video. All of these specs exceed the "so-called" requirements that Apple says is required for I-Tunes 7.3.2.
I tried the suggested remedies suggested in this discussion forum here and nothing works.
Very frustrating!!!

Similar Messages

  • Audio Buffering problem

    Hi,
         I am trying play a real time audio received from server. I am using custom DataSource and sourcestream to cretae player and I observed that the when the data is given to the player through the read method player is not playing the data until it reaches 2 secs(approx). Is there any to avoid this buffering?
    Other observations are when the data is played from a input stream it playing iwthout any buffering. So, i it a bug or behavior? Please confirm so that we can decide on the way forward.
    Thanks
    Raghava Reddy

    Downloaded the free 900+mb Grey's Anatomy season
    finale.
    Have many other video's from iTunes, most paid for.
    They play fine, no out of sync, no apparent video
    buffering problem.
    This episode is, audio wise, out of sync with the
    video output and the video seems as if it is
    skipping, or buffering making a distorted, skipping
    video.
    Very hard to digest.
    I set all components (updated DirectX, Disabled 3D,
    set GDI only, in system made sure DMA is on, etc.)
    and since all other iTunes' video's play back
    fine, I am wondering what else there may be to do
    short of redownloading the vidoe which I may not be
    able to do.
    HP Ze 4230
    Pavilion/ Notebook Windows XP O/S XP
    Home, Sp 2, Itunes 7.0.0.7; 40 GB HDD, 1.83 Ghz, 512
    RAM, external 250 GB HDD,
    FOLLOW UP.................
    I also regressed to iTunes 6.0.5 to determine that the 900+ mb m4v file for Greys Anatomy seems in fact corrupted.
    Other iTunes tv shows play fine in both version 7 and 6.0.5.
    Grey's Anatomy video stutters and the voice is out of sync with the video.
    What is left for me to do?
    Apparently I can not re download the m4v file as only one download is allowed. And it took several hours to download...
    HELP!!!!!!!!!!!!!
    Thanks in advance,
    Robert
    HP Ze 4230 Pavilion/ Notebook Windows XP O/S XP Home, Sp 2, Itunes 7.0, 40 GB HDD, 1.83 Ghz, 512 RAM, external 250 GB HDD,
    HP Ze 4230 Pavilion/ Notebook Windows XP O/S XP Home, Sp 2, Itunes 7.0, 40 GB HDD, 1.83 Ghz, 512 RAM, external 250 GB HDD,

  • Playing video from a capture device - Out of memory for video buffers?

    Hello guys, I'm having problems playing video from a video capture device when not using JMStudio. When I use JMStudio, the video plays real time with no problems, but when I use code taken from a java book which is a simple Media Player, I get the following error:
    "Error is Error: Out of memory for video buffers."
    My capture device is working and I don't know why i get this error when trying to watch the video feed from a program other than JMStudio. I also tried different code that has worked in the past with the same exact capture device and I still get the same error. Please help, I have no clue at this point. The code for the simple media player is below, it's taken out of the book "Java: How to Program (4th edition)":
    Thanks in advance, I am very greatful
    Miguel
    device info: vfw:Microsoft WDM Image Capture (Win32):0
    When I type the locator, I am typing vfw://0, I also tried just vfw://
    and I get the same error.
    // Fig. 22.1: SimplePlayer.java
    // Opens and plays a media file from
    // local computer, public URL, or an RTP session
    // Java core packages
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    // Java extension packages
    import javax.swing.*;
    import javax.media.*;
    public class SimplePlayer extends JFrame {
         // Java media player
         private Player player;
    // visual content component
    private Component visualMedia;
    // controls component for media
    private Component mediaControl;
    // main container
    private Container container;
    // media file and media locations
    private File mediaFile;
    private URL fileURL;
    // constructor for SimplePlayer
    public SimplePlayer()
    super( "Simple Java Media Player" );
    container = getContentPane();
    // panel containing buttons
    JPanel buttonPanel = new JPanel();
    container.add( buttonPanel, BorderLayout.NORTH );
    // opening file from directory button
    JButton openFile = new JButton( "Open File" );
    buttonPanel.add( openFile );
    // register an ActionListener for openFile events
    openFile.addActionListener(
    // anonymous inner class to handle openFile events
    new ActionListener() {
    // open and create player for file
    public void actionPerformed( ActionEvent event )
    mediaFile = getFile();
    if ( mediaFile != null ) {
    // obtain URL from file
    try {
    fileURL = mediaFile.toURL();
    // file path unresolvable
    catch ( MalformedURLException badURL ) {
    badURL.printStackTrace();
    showErrorMessage( "Bad URL" );
    makePlayer( fileURL.toString() );
    } // end actionPerformed
    } // end ActionListener
    ); // end call to method addActionListener
    // URL opening button
    JButton openURL = new JButton( "Open Locator" );
    buttonPanel.add( openURL );
    // register an ActionListener for openURL events
    openURL.addActionListener(
    // anonymous inner class to handle openURL events
    new ActionListener() {
    // open and create player for media locator
    public void actionPerformed( ActionEvent event )
    String addressName = getMediaLocation();
    if ( addressName != null )
    makePlayer( addressName );
    } // end ActionListener
    ); // end call to method addActionListener
    // turn on lightweight rendering on players to enable
    // better compatibility with lightweight GUI components
    Manager.setHint( Manager.LIGHTWEIGHT_RENDERER,
    Boolean.TRUE );
    } // end SimplePlayer constructor
    // utility method for pop-up error messages
    public void showErrorMessage( String error )
    JOptionPane.showMessageDialog( this, error, "Error",
    JOptionPane.ERROR_MESSAGE );
    // get file from computer
    public File getFile()
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(
    JFileChooser.FILES_ONLY );
    int result = fileChooser.showOpenDialog( this );
    if ( result == JFileChooser.CANCEL_OPTION )
    return null;
    else
    return fileChooser.getSelectedFile();
    // get media location from user input
    public String getMediaLocation()
    String input = JOptionPane.showInputDialog(
    this, "Enter URL" );
    // if user presses OK with no input
    if ( input != null && input.length() == 0 )
    return null;
    return input;
    // create player using media's location
    public void makePlayer( String mediaLocation )
    // reset player and window if previous player exists
    if ( player != null )
    removePlayerComponents();
    // location of media source
    MediaLocator mediaLocator =
    new MediaLocator( mediaLocation );
    if ( mediaLocator == null ) {
    showErrorMessage( "Error opening file" );
    return;
    // create a player from MediaLocator
    try {
    player = Manager.createPlayer( mediaLocator );
    // register ControllerListener to handle Player events
    player.addControllerListener(
    new PlayerEventHandler() );
    // call realize to enable rendering of player's media
    player.realize();
    // no player exists or format is unsupported
    catch ( NoPlayerException noPlayerException ) {
    noPlayerException.printStackTrace();
    // file input error
    catch ( IOException ioException ) {
    ioException.printStackTrace();
    } // end makePlayer method
    // return player to system resources and
    // reset media and controls
    public void removePlayerComponents()
    // remove previous video component if there is one
    if ( visualMedia != null )
    container.remove( visualMedia );
    // remove previous media control if there is one
    if ( mediaControl != null )
    container.remove( mediaControl );
    // stop player and return allocated resources
    player.close();
    // obtain visual media and player controls
    public void getMediaComponents()
    // get visual component from player
    visualMedia = player.getVisualComponent();
    // add visual component if present
    if ( visualMedia != null )
    container.add( visualMedia, BorderLayout.CENTER );
    // get player control GUI
    mediaControl = player.getControlPanelComponent();
    // add controls component if present
    if ( mediaControl != null )
    container.add( mediaControl, BorderLayout.SOUTH );
    } // end method getMediaComponents
    // handler for player's ControllerEvents
    private class PlayerEventHandler extends ControllerAdapter {
    // prefetch media feed once player is realized
    public void realizeComplete(
    RealizeCompleteEvent realizeDoneEvent )
    player.prefetch();
    // player can start showing media after prefetching
    public void prefetchComplete(
    PrefetchCompleteEvent prefetchDoneEvent )
    getMediaComponents();
    // ensure valid layout of frame
    validate();
    // start playing media
    player.start();
    } // end prefetchComplete method
    // if end of media, reset to beginning, stop play
    public void endOfMedia( EndOfMediaEvent mediaEndEvent )
    player.setMediaTime( new Time( 0 ) );
    player.stop();
    } // end PlayerEventHandler inner class
    // execute application
    public static void main( String args[] )
    SimplePlayer testPlayer = new SimplePlayer();
    testPlayer.setSize( 300, 300 );
    testPlayer.setLocation( 300, 300 );
    testPlayer.setDefaultCloseOperation( EXIT_ON_CLOSE );
    testPlayer.setVisible( true );
    } // end class SimplePlayer

    somebody? anybody? I know there are some JMF professionals in here, any ideas?
    I was reading the Sun documentation and it said something about increasing the JVM memory buffer or something? Well, i'm just clueless at this point.
    Help a brotha out!

  • Buffering Problems on FP 10.1

    I have problems viewing video on Yahoo!  Video may run for 5 - 10 seconds, and then buffer for 5-10 seconds.
    Windows 7 64 bit operating system
    IE 8.0.7600.16358, (I open it in the 32 bit session)
    FP WIN 10,1,53,64
    ATI Radeon HD 4650 4GB video card.
    Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz CPU 9 GB RAM.
    Internet Speed
    Download 2.74 Mb/s (SPEEDTEST.NET)
    Upload0.85 Mb/s (SPEEDTEST.NET)
    Ping 28 MS (SPEEDTEST.NET)
    Connection Speed 104.5 Kbps (CNET)
    I have disabled the hardware acceleration.
    I upgraded my video driver.
    Can you help me determine why I have buffering problems?
    Thanks,
    Don

    Hi, Does this happen after you have restarted your system?
    Do both of your browsers see the Flash logo animation here? If so then Flash Player is working correctly. I don't use Tree so am not familiar with it. Perhaps someone else will post to your thread with more info.
    http://www.adobe.com/software/flash/about/   
    Thanks,
    eidnolb

  • PreLoader/Slide video buffering issues

    Hi I am experiencing problems with my project that uses a mixture of slide video and standard Captivate content. The course preloader displays, the content starts to play then, on a slide video, slide the video will stop and the slide video pre-loader will appear before eventually restarting. I don't think it's a band-width thing because I have tested it on a very good connection and the same thing happens.
    What I really want is to get the main course pre-loader to include FLV slide video file size in it's assessment of what has to be loaded - to avoid the FLV slide video buffering and showing its own pre-loader.
    Does anyone have any thoughts?
    I have tried the solutions offered here http://forums.adobe.com/ but unfortunately this introduced other issues.
    Also is there any way of changing the default “loading …” text that comes up when a slide video does need to buffer ?
    Many thanks for any help

    Slide Video FLVs dont get loaded in the pre-loader. Since the videos could be so large, they are loaded only when encounterted in the project (just when video is being seen). You will usually see a "loading..." message here.
     Please try this best practices for frequent buffering problems - Many customers resolved similar problems with it by calculating actual video sizes mathing your network capability.
    Adobe Captivate 5.0 & 5.5 * Best practices to use slide videos effectively
    Regarging customizing the "loading..." screen - this is not supported at present.
    Thanks,
    Sony

  • Severe buffering problems when streaming

    In the past couple of days, I have begun experiencing severe buffering problems when streaming video on the web. The video plays for like 6 seconds and then it pauses for like 6 seconds and continues this pattern over and over. This problem occurs regardless of which web browser I am using. I know the problem is not caused by the internet connection because I did a speed test and it is currently operating at 12mbps.  I have tried streaming video on another computer and it worked fine.

    Welcome to the Apple Community.
    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • Slow video buffering since installing maverick

    I have had slow video buffering since installing Maverick,any suggestions?

    I have had this issue before as well
    My system was also occasionally completely unresponsive after the Mavericks upgrade. (It's been through 4, now)
    So, I backed up all my files with time machine and performed a clean install and all my issues were compltely resolved. Including the slow buffering. Although doing this was a tedious, long, and aggravaiting process, my issues were resolved. Good luck, or whatever, if you are still having this problem as this (even though not an ideal one) is a solution.

  • How To Fix Slow Youtube Youtube Bufferring problem.

    Recently youtube online streaming video is running very slow even in 240p,what is the problem.I am currently using latest adobe flash player 11.6.602.180 with Google Chrome Browser.My bandwith is 4mpbs,how to fix slow video buffering,need help.

    I'm having the same buffering problems with ver 11.6.602.180.
    Just tried again during the same time of day.
    Backed-out back to 11.6.602.171 and the problem no longer seems to exist.
    I running Vista Home Premium SP2  32-bit  on an HP Pavilion dv6500 notebook w/ 2 GB RAM.
    AMD Athlon 64 X2 Dual core processor TK-55 1.80 GHz
    Firefox browser 19.0.2

  • Help with flash video buffering

    I need help with flash video buffering. I've created a
    buffering graphic to show up when the clip is loading. The problem
    that I'm having is that when the video finishs playing, the buffer
    is empty and the graphic pops back on. The following is the code
    that I'm using to call and buffer the video. Any help would be
    great!
    stop();
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.setBufferTime(10);
    ns.onStatus = function(info){
    if(info.code == "NetStream.Buffer.Full"){
    bufferClip._visible = false;
    if(info.code == "NetStream.Buffer.Empty"){
    bufferClip._visible = true;
    if (info.code == "NetStream.Stop") {
    bufferClip._visible = false;
    theVideo.attachVideo (ns);
    ns.play("my_clip.flv");
    rewindButton.onRelease= function(){
    ns.seek(0);
    playButton.onRelease= function(){
    ns.pause();
    }

    Again thank you for your help in advance...
    I put the script folder into the root. As far as the .flv
    file it is showing up as being "put" to my web server. when i
    checked the root folder it is there. again i am having the same
    problem.. the local view works but when i check it on the web it
    just shows that there should be a flash video there but it does not
    show up.
    i created a new root for this test page the new link is..
    http://www.wfwa.org/TESTindexfolder/TESTindex.asp
    here are the files that are showing up in it...
    flashprojectwebvid.fla
    flashprojectwebvid.html
    flashprojectwebvid.swf
    PBSpromo.flv
    SteelExternalPlaySeekMute.swf
    TESTindex.asp
    and the Scripts folder
    thanks again for any help..

  • MSI K7N2 Delta-ILSR, Mouse problem & Video off problem solved!!!

    I find the following information that I collected very interesting at the very least...
    Here goes...
    The video off problem that I was having was directly linked to the mouse. Here, let me explain the video off problem. In the BIOS Have the Standby mode set to S3. The problem occurred when I started windows, then went into standby, then started back up, then restarted the computer, the monitor would act as if it were in sleep mode, or rather there was no signal being sent to the monitor. Well the odd way I fixed that is by plugging in a standard 2 button PS/2 mouse. Also this fixed the issue with the mouse sometimes not working in windows.
    Here is how I tested.
    Logitech MX700 Cordless Optical Mouse, PS/2 & USB= failed.
    Logitech iFeel Optical Mouse, USB= failed.
    Microsoft Cordless Ball Mouse, PS/2= failed.
    Standard Artec (Cheapy brand) Ball Mouse (With no wheel), PS/2= All issues fixed, and passed.
    When I said failed I do not mean they didn't work, I mean they sometimes didn't work and also caused the Video off problem after restarting the computer.
    Obviously it isn't the ports (PS/2 or USB) that are the problem, it is more like the mouse itself, and the amount of buttons in particular. As you can see above the only mouse that works correctly is the one that only has 2 buttons, the rest has 3 or more buttons along with a Wheel. The MX700 has 8 buttons + wheel, WOW!
    Anyways I figure out it was the mouse, and not the memory.
    Obviously MSI needs to make a patch for this mouse problem.
    I'm still having a hard time believing that the mouse caused the video not to work, but it is true! I spend well over 5 hours testing this crap. Every time with the mice with more then 3 buttons it messed up, and every time with the 2 button old fashion mouse it worked flawlessly!
    MSI, get to work on a new BIOS to fix this mess!!!  :]
    BioHaz

    Quote
    Originally posted by Raven_
    hi
    its possible to use an ps/2 mouse AND a usb mouse at the same time.
    i used the ps/2 mouse in windows and the usb mouse when playing games.
    you can get some trouble if you do it the way i did it.
    i was in windows surfing and the pointer just jumped all over the screen.
    when i looked on the other side under a table a friends little kid played with the usn mouse.  )
    bye
    LOL, that isn't what I'm talking about.
    There seems to be a problem with my motherboard accepting mice with more then 2 buttons. It works the first time, but if you restart the computer, the video goes off. If you have both installed, it still messed up.
    BioHaz

  • 'Source play' and 'audio-video sync' problems with PE8 on fast WIN7 64 bit computer

    I am transferring Hi8 videos, about 2 hours long, to my WIN7 64 bit computer with PE8.  [Dell Mobile Precision M4400 Computer Workstation (Intel Core 2 Duo T9900 500GB/4GB); NVIDIA Quadro FX 770M, 512MB] I seem to have several problems: 
    First, after importing the file (.avi), I get a message about ‘dropped frames.’ 
    Secondly, when I try to play the video in the source monitor, the audio plays but the video doesn’t; it only shows the first frame [this is after waiting until the video is ?recognized? ]   I can use the shift-arrow key and see that the video is there.
    Thirdly, I can play the .avi file in other players, e.g., avidemux or PE pro CS5 on another computer.  There, I see that the audio and video are not in sync; the audio can be up to 300 ms ahead of the video (as determined using avidemux). 
    Questions:
    1.  Why doesn’t the source monitor play the video? Is this a problem with PE8 (latest update as of 3 March 2011) on aWIN7 64 bit computer (intel duo core. 3 GHz).
    2. Is the audio-video sync problem the result of the ‘dropped frames?’ How can PE8 correct this? Avoid this? Or, is it coincidence?

    "I think you're telling me you're using a backwards compatible Digital8  camcorder to capture your video as DV-AVIs. Is that right?" YES
    "Are you using  Premiere Elements to do this capturing?" YES, AS ABOVE PE8
    "Go to the File menu and select Properties. It should show a standard DV codec being used for your video and audio."
    WMP v12 is dumb. Under properties, media, it says 'video.'  However, avidemux gave me the information state above: video -- Codec 4CC: dvsd, frame rate: 29.971 fps; audio -- codec: PCM, channels: Stereo, frequency: 48 kHz.
    So, back to the Questions:
    1.  Why doesn’t the source  monitor play the video? Is this a problem with PE8 (latest update as of 3  March 2011) on aWIN7 64 bit computer (intel duo core. 3 GHz).
    2. Is the audio-video sync problem the result of the ‘dropped frames?’ How can PE8 correct this? Avoid this? Or, is it coincidence?

  • MacBook Pro 15" video card problems (i think)

    Can anyone tell me if this is indeed a video card problem?
    MBP 15" info (Dec. 2011)
    Processor 2.4 GHz Intel Core i7
    Memory 4GB 1333 MHz DDR3
    Graphics Intel HD Graphics 3000 384 MB
    OS X Lion 10.7.5
    This is what happened:
    I use my mbp heavily because I edit a lot of videos with Premiere. I also use lightroom / photoshop alot + games. I also installed Parallels desktop late 2013. I don't know if that is relevant but anyway. Everything started late 2013 (a little after installing parallels actually) when there are moments when the audio wouldn't work and I couldn't adjust the volume. It would come back anyway so i didn't mind it. Then the fans were on high speed for little activity. After that the keyboard backlight couldn't be adjusted and wouldnt work. I ignored all of these cuz i wasn't troubling me at the time. In January i left for france to study - I use bike all the time and once stupidly placed my laptop on the basket going to school (rough roads). I had a class with html so I had to open Parallels, my teacher pointed out the fans and how loud they were. That day, parallels desktop said i must upgrade to windows 9 or it will restart every 2hours. I didn't of course. I didn't have time to.
    After that (a few days later i think) my laptop would randomly turn into a black screen but it's still on (the power LED is on) I tried turning it off by pressing down the power button and then turning it back on. It worked the first time. During the first week, the frequency of it happening grew. It would do it almost 3 times a day. during that same week I tried to do an SMC reset. It fixed the keyboard light, fans and audio but not the black screen thing. It just keeps on happening around 1-3 times a day. It only happens when I'm using it btw, never when I just leave it. ALSO, after a few days, it would take longer hours to open my mbp again. I mean, the screen would turn black. i would turn it off, then on again. I will ONLY hear the hard drive moving but no startup sound and no grey screen and apple logo. nothing.
    The following weeks after that, I asked a friend to help me out. He suggested that I install gfxCardStatus because he said it might be my video card. He instructed that I keep it on intergrated only. So I installed that and did what he said I thought it worked for a while because the black screens stopped happening (even when gfx keeps on going back to dynamic) BUT NOW, MY LAPTOP WOULD FREEZE (not turn black). I'd shut it down using the power button but it still takes me hours to open it again. Sometimes, I'd wait for the battery to drain because it would startup when i charge it (sometimes)
    I tried doing AHT as well to confirm the video card problem, but the results are no problems found. I really don't want to replace my logicboard here in france. everything is more expensive here. ;__;
    Today I uninstalled parallels to see if that might have had anything to do with my problem now but i think that's just wishful thinking.
    Can somebody tell me if this is really about the video card? Thank you

    Your appointment at the genius Bar in an Apple Store (anywhere in the world) for an evaluation is FREE, in warranty or out. Those guys put their hands on these Macs all day every day, and they are especially good at Physical and Power problems.
    Ask them.

  • Video signaling problem caused by 1.9, 2.0 BIOS (pointing out a BIOS problem)

    Hi, i have a problem with the video signal. At random times when i boot up my computer, the computer would power up but there is no signal to the monitor. there is no hdd activity (via the hdd led) and nothing seems to be happening just that the fans are whirring. i have to unplug the computer then plug it again then turn it up again which sometimes repeats the problem. This is very irritating! So i did a little bit of troubleshooting:
    1. I changed video cards. I used a SAPPHIRE ati radeon 9600XT fireblade and a LEADTEK GF4 ti4200. Both cards were causing the same problem and when i used both cards to another computer, there is no problem. = NOT A video card problem
    2. used differnt kinds of drivers Cat 3.10, 4.10, 4.20 (omega and official) does not seem to do anything (which also i believe the drivers are OS dependent and its the bios of the vid card that starts up the vid card)
    3. upgraded from 1.9 to 2.0 BIOS. still the same problem
    4. reverted from 2.0 to 1.7 BIOS. the problem ended.
    BTW, the board is 865PE-Neo2 - S. on a Intel 2.6Ghz C, 512MB TwinMos ram with m-tec chips, 80gb hdd, enermax 300w psu
    so ive' solved the problem, and i just wanted to point out that there is a problem with 1.9, 2.0 BIOS. (havnt tried the 1.8 tho)

    Wish I had seen this thread 2 weeks ago, but you did save me from buying a new graphics card.  That was the last step (before chucking this mobo completely) in my attempts to fix the same problem.  It didn't bother me too much, except I also couldn't get any DVD player (tried 3) to work.  Would boot sometimes and at others gave a blue screen video error.
    Flashing to bios 1.7 was the only thing that fixed it.  Tried different memory, updating software, various combinations of drives, etc.  For the record I tried bios 1.8, 1.9, 2.0, and 2.1.  Not sure what about those updates causes problems but there definitely is something wrong.
    Thanks.

  • The Video Out Problem...Fixed?

    I know Wikipedia can be edited by virtually anyone with membership and an opinion, but I had to know.
    It said that an itunes update 1.0.2 fixed the video out problem...does that mean that videos can now be connected to a TV and play on the TV? They fixed that?
    I am still ever in the market for the nano, just waiting until the right ammount of money to purchase one. Thanks

    I think it is currently working according to this knowledgebase article: http://docs.info.apple.com/article.html?artnum=300233
    That is, for the new Nano, you can use the older iPod Universal Dock (ie the normal one that has been available for a couple of years) together with an iPod composite video cable or an SVideo cable (ie all currently-available stuff you may have already bought for a previous-series video iPod), OR you can use the brand new "Apple Universal Dock" with the brand new Apple Composite AV Cable or with the (new) Apple Component AV Cable, OR you can use one of those brand new Apple AV Cables directly with the Nano (without the new Apple Universal Dock).
    What you cannot do is connect an old video cable or accessory, which was expecting to get composite video from the RCA/audio jack on the Nano, because it looks like (on the new Nano and the Classic) the audio out jack is now just for audio out and video is only available via the dock connector on the iPod.
    ted.h.

  • Aperture Video Import Problem - from Lumix GH4: Imported clips have their dates changed to the import date.  The files show up on the hard drive but many are not showing up in Aperture.

    Aperture Video Import Problem - from Lumix GH4: Imported clips have their dates changed to the import date.  The files show up on the hard drive with import date not created date, but many of these same files are not showing up in Aperture. Sometimes the clips actually show up with the current import but take on the video information from a previously imported file.

    It was suggested I move this question to IPhoto or IMovie which I did. 
    Well moving to a different discussion group did not provide an answer to this question either. But what I finally did was import one batch of photos and videos into IPhoto for a given day at a time. Working with these I could change the date and times in order to get them in the original sequench taken. Then I would create an album with that batch. These would all be on the same day (IMove was closed for this phase). Then I would open IMovie, generate the thumbnails for that album, and select the album I had created. This was necessary because the importing process in IPhoto was using incorrect dates for my video so it was a real struggle finding them in IMove until I developed this approach.
    I believe that this whole process was so screwy because I was importing from an external hard drive not a camera. I had these photos on a PC and did not have the original cameras to use to import directly which I am fairly sure would have made this easier!

Maybe you are looking for

  • My mac pro takes long to switch on

    Recently I moved from one country which uses 240V to a country that uses 110V I noticed that I need to push the power button a couple of times to turn it on. Once it's on it works perfectly. Can someone guide me if there is a problem or not and what

  • Can someone provide HTML and CSS compatibility issues list in IE 12?

    Hi There, We recently come to know from our team members that Microsoft going to release Internet Explorer (IE) 12. But there are some compatibility issues with HTML and CSS which can break our web sites. Can someone provide us list of issues that we

  • Using the Security Manager to restrict access to a single package

    After reading up on the Security Manager, the package.access property and the use of the [accessClassInPackage RuntimePermission|http://java.sun.com/javase/6/docs/technotes/guides/security/permissions.html#RuntimePermission] , it seemed to me that it

  • Itunes Library cannot find almost a 1/3 of my music

    My itunes library cannot find 1/3 of my music because i cleaned up 'my music" on the start menu on the computer. I thought since I had all the music on the itunes library why do i need a duplicate list of the same songs on "my music " on the start me

  • Data Rescue II AND Disksaver for failing hard drive?

    I need some guidance on rescuing data from an internal hard drive that Disk Utility could not fix. (The drive is making an odd noise, and apparently has a mechanical problem.) Data Rescue II appears to successfully cloned my iMac's drive, while Carbo