Yet ANOTHER Quicktime without sound topic.....

Sorry to post ANOTHER topic about quicktime without sound, but....
I have a 1.5ghz powerbook g4, running OSX10.3.9, quicktime 7.1.6, Divx 6.0 codec, and the latest version of Xvid. I've tried my Audio settings at 32000, 44100, and 48000khz, played with audio settings in the quicktime player itself, and I've even reluctantly, as I really prefer QT, tried other players (Mplayer, Windows Media Player, and Divx Player... ). I've tried the garageband solution, and Perian won't work on OSX10.3...
And yet I still can't play the **** first season of 24 or the new season of Entourage in .avi format...... I recently watched the first three seasons of House, a season of CSI, and Entourage, so why can't I play certain .avi files?

To Apple Discussions!
I note that you haven't tried running FSCK and/or VLC Media Player.

Similar Messages

  • Yet another cocoa without interface builder post

    I am sure its been brought up before. I would like to know if its possible to write Cocoa apps without Xcode, Interface Builder, or NIB files in general; another words, write Cocoa programs programmatically using ONLY Objective C. Before you ask me why I would want to do such a thing and that I am crazy, please hear me out.
    I come from a Win32 background, and my primary languages are C and C++. I am getting used to Objective C (though I wish I could use C++ to program in Cocoa). I picked up a copy of Cocoa(R) Programming for Mac(R) OS X (3rd Edition) by Aaron Hillegass, and have been trying to learn cocoa from it for the last few months. Basically, I am having big trouble wrapping my mind around cocoa via the very conceptual high level approach this book takes. I can not for the life of me begin to understand this whole making connections with interface builder.
    I do NOT plan to write production applications in cocoa by hand, but if I could just write a few trivial applications in cocoa by hand without interface builder or nib files, perhaps when I do use interface builder, I won't have such a hard time understanding whats going on.
    Thanks in advance for the help.

    __mikem wrote:
    I am sure its been brought up before.
    I don't care. Your question isn't about learning how to program and learning via the iPhone SDK. I'll do anything I can for you
    I would like to know if its possible to write Cocoa apps without Xcode, Interface Builder, or NIB files in general; another words, write Cocoa programs programmatically using ONLY Objective C.
    Certainly. You can write command-line Cocoa apps. Xcode is just an IDE like Visual Studio.
    Before you ask me why I would want to do such a thing and that I am crazy, please hear me out.
    I come from a Win32 background, and my primary languages are C and C++. I am getting used to Objective C (though I wish I could use C++ to program in Cocoa). I picked up a copy of Cocoa(R) Programming for Mac(R) OS X (3rd Edition) by Aaron Hillegass, and have been trying to learn cocoa from it for the last few months. Basically, I am having big trouble wrapping my mind around cocoa via the very conceptual high level approach this book takes. I can not for the life of me begin to understand this whole making connections with interface builder.
    You specifically asked to avoid the topic, but I'm sure there are several of us who are really tired of iPhone questions who would be happy to try our hand at explaining the User Interface architecture in Cocoa - if you want to try.
    I do NOT plan to write production applications in cocoa by hand, but if I could just write a few trivial applications in cocoa by hand without interface builder or nib files, perhaps when I do use interface builder, I won't have such a hard time understanding whats going on.
    You can write Objective-C programs using whatever editor and IDE/makefile you want. You can even work with all the non-UI parts of Cocoa to get a feel of how it works. Technically, you could write code using only Carbon and never use Objective-C, but that is really a dead-end.
    A good idea might be start looking at doing writing MacOS X kernel extensions. You should still use Xcode, but only as an IDE. The code would all be C++ (or a subset thereof) with no user interface or NIB files. Realistically, that is probably harder than learning Interface Builder, but it is probably the most productive path available to you for developing MacOS X and avoiding Interface Builder.

  • Yet another Quicktime question

    Trying to play a quicktime movie that is part of a bonus feature an on a store bought CD... it says I need to enable Flash in my Quciktime prefs to do it. Supposed to be a box to check off to enable Flash, but no such box exists on the window. Am using OS 10.4.10, Quicktime 7.4, and Flash 9.0.115. Can someone please advise on this? Thank-you.

    That option (to enable Flash in Quicktime) went out with QT 7.3 and later, apparently for security reasons.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2 and then the latest version obtained from here: http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.)

  • (yet another) JFrame background image topic

    So I know there's about 20 other threads asking this same question, but I've read them all and still can't seem to get my code to work. Here's what I have:
    import javax.swing.*;
    import java.awt.Image;
    import javax.imageio.ImageIO;
    public class IndexFrame extends JFrame
        private JButton course1;
        private Image bg = new ImageIcon("background.jpg").getImage();
        public IndexFrame()
         JPanel cp = new JPanel()
             public void paintComponent(java.awt.Graphics g)
              if(bg==null) System.out.println("doh! no pic");
              g.drawImage(bg,0,0,null);
              super.paintComponent(g);
         cp.setOpaque(false);
         setContentPane(cp);
         this.setBounds(100, 100, 1000, 800);
         course1 = new JButton("hi");
         add(course1);
         setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        public static void main(String [] args) {
         IndexFrame frame = new IndexFrame();
         frame.setSize(300,300);
         frame.setVisible(true);
    }Needless to say, it doesn't work, and I have no idea why. It appears to be loading the pic correctly, because bg is not null (doesn't print the error message). Any help figuring out what's going on would be greatly appreciated!
    On the bright side, I've learned a lot about Swing in trying to fix my problem; here's a question though. Is it ever a good idea to override a Swing object's (e.g. a JFrame) paint method? Or, unlike AWT, should you only override the paintcomponent()? And if so, why?
    Thanks!

    I've had problems with ImageIcon reading. For one
    thing, if it can't find the file, it won't always
    tell you. I had to give the absolute path a number of
    times for it to be able to find the actual image
    file.Hrm, so I guess I assumed it had loaded the file since bg was no longer null. It turns out you were right. I replaced the line:
    private Image bg = new ImageIcon("background.jpg").getImage();with:
    ImageIcon blah = new javax.swing.ImageIcon(getClass().getResource("background.jpg"));
    bg = blah.getImage();in the IndexFrame constructor, and now it magically works! Just for future reference for me, any idea why the first way I did it didn't work? Was I using ImageIcon incorrectly? Also, is there a better way of handling images? I've come across the ImageIO class, but wasn't sure what that was intended for.
    Thanks again!

  • After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!

    After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!
    iTunes is a mess! It couldn't find it's own libraries and I was forced to create a new one. Now I don't know where my music is or if any's missing.

    columbus new boy wrote:
    How crap is that?
    It's not crap at all.
    It's not that simple. For example, I've 3500 songs on my MacBook but don't want them all on my phone, so I have to manually select each song again???
    There has to be a solution.
    Why not simply make a playlist with the songs you want on the iPhone?
    and maintain a current backup of your computer.

  • How do i put tv programmes and videos from itunes to another iphone, without having to delete all data on the phone and replacing it with my library? i switched the 'sync only ticked songs and videos box' yet it still wont let me transfer videos from my i

    How do i put tv programmes and videos from itunes to another iphone, without having to delete all data on the phone and replacing it with my library? i switched the 'sync only ticked songs and videos' yet it still wont let me transfer videos from my itunes onto my new phone, any ideas??

    Copy the entire itunes folder from the old computer to the new computer.

  • Is there a fix yet for the no sound problem with lion on the iMac without having to restart every time I switch the computer on?

    Is there a fix yet for the no sound problem with lion on the iMac without having to restart every time I switch the computer on?

    Try booting in Safe Mode by holding the the shift key immediately after powering on your system. Safe boot mode will for a directory check of your startup volume, then load only the required kernal extensions (kext files), and deletes some cache files. Once the system boots into Safe Mode you can simply restart the system to see whether the issue has been resolved.
    If you still have the issue try resetting the SMC by shutting down the system and disconnecting the power cord for ~15 seconds, then reconnecting the power cord. Next, reset the parameter RAM (PRAM) by holding down the option-option-P-R keys after powering ON the system. Wait until the iMac restarts twice, then let the system boot normally.

  • Yet another Adobe Flash Player zero-day discovered from the Hacking Team breach.

    Thanks for the heads up Symantec Matt. 

    Aaaahhhh yes... remember when an entire day could by without news of a breach or hack or targeted attack? Yeah... neither do I.It will probably shock you all to hear that the Symantec Security Response team dropped a new blog over the weekend outlining a Zero-Day vulnerability in Adobe Flash player. Dig it:Second PoC Exploit for Adobe Flash Player Discovered After the Hackers-for-Hire Company Breach
    Yet another Adobe Flash Player zero-day discovered from the Hacking Team breach.Symantec is aware of a second vulnerability (CVE-2015-5122) in Adobe Flash Player that’s associated withHacking Team, the Italian company which recently suffered a major data breach. The existence of the unpatched vulnerability has been confirmed by Adobein itssecurity bulletin.Symantec’s analysis has confirmed that the vulnerability can be successfully exploited...
    This topic first appeared in the Spiceworks Community

  • Still play without sound!

    I borrowed a friend's Sony videocamera to film a projekt for my thesis.
    The videocamera produces MPEG 2 files, which cannot be played correctly on Quicktime (Snow leopard 10.6.8)
    To solve this problem I bought apple's mpeg 2 component which promises to solve the problem but it doesn't work.
    Mpegv2 videos still play without sound! Have I wasted my money?
    Anyone with the same problem? any suggestions?
    PS. I've tried all the 'classic' solutions: deleting and re-installing QT, using QT 7, repair permissions, but nothing seems to work!

    I solved my problem with MPEG Streamclip. Although it dates from 2008, it does the job perfectly and for free :-). I could see the videos before (with sound) with VLC and Toast Video Player, but editing..well that's very tricky to do in Toast (with limited possibilities) and impossible in VLC and my project involves video editing. I have iMovie 09 and tried to import the original mpeg2 files, but it wouldn't recognize them.
    To be automatically converted by iMovie, you must import the files directly from the camcoder. Once the files are moved to your hard drive, iMovie uses Finder-level routines to move the files into iMovie rather than the "Importer" module which handles many different QT non-editable camcorder formats. If you manually copied/moved the files to your hard drive, then you must manually convert the non-editable compression formats to editable formats.
    The solutions you offer on QT MPEG2 Playback component can prove useful to me in the future, it seems though a bit too complicated and time consuming to go through all these conversions...
    The demuxing/re-muxing work flows are very quick since the video is not converted—only re-wrapped. Unfortunately, these work flows are more for viewing the content than for preparing the video for editing. If you plan to do your editing in iMovie, then I would recommend converting the MPEG-2 video to AIC and the audio to Uncompressed. If editing in FCP, then you can convert the content to your preferred "project" compression format. If all you want to do in way of editing is to trim and/or merge files without titles, transitions, and such, then you can do that from within MPEG Streamclip. It also allows you to crop and/or center frame content and includes filters to modify contrast, brightness, saturation, change volume, and/or adding a text watermark if desired. Unfortunately, these routines can only be accessed as part of an export work flow.
    I think it could be simpler and I still doubt that buying QT MPEG-2 Playback component was worth it :-(
    Lion though seems to have solved this problem...but I am not quite ready to change OS yet..
    As previously stated, the simpliest editing approach is to import/manage content directly from the camcorder to iMovie. With regard to the QT MPEG-2 Playback component, if you worked on any MPEG-2 content while testing MPEG Streamclip, then you are already using it. Otherwise you would have received an error message stating you needed to purchase/install the component. With regard to Lion, while QT X can play "muxed" MPEG-2/AC3 content in MPEG or MPG containers, it does not support the VOB file container. Further it does not support resource paired M2V/AIFF or M2V/AC3 non-paired elementary streams like QT 7 with the MPEG-2 component does. In short, while QT X.1 solves some MPEG-2 playback problems, it still can't do some things that the QT 7 Player can do and neither can edit GOP content natively as MPEG Streamclip can.

  • Yet another dead mic with Win7 64-bit upgrd - Portege M700

    Title says it all.  Mics used to work fine on this machine under Windows XP. Under Win7, except as I note below, the mic has inaudibly low volume with any Control Panel Sound settings. I've spent huge amounts of time trying to solve this. After seeing all the similar posts (with no solutions, it seems) from users of many different Toshiba laptops, I'm about to start spreading the meme across the Internet that Toshiba laptops can't use mics.
    I started by upgrading to Win7 then adding just the 64-bit drivers I need from Toshiba's support site. No joy.  Then I started from a clean Win7 upgrade (64-bit Home) using Toshiba's upgrade script.  Nope.  Installed latest generic drivers from Realtek.  Hmm .. some progress, maybe: now with some Sound settings I can get slightly more volume but the mic input is drowned out by white noise-ish hissing.  All right, disable any other sound sources I can adjust: disable Chicony webcam driver from Device Manager. Hmm, now mike volume can get fairly high but the hissing still drowns it out.
    Toshiba: At some level, this is a problem between Microsoft and Realtek, I know. But you can help us.  MS changed the audio model significantly since Win XP, including (god knows why!) giving up the little audio mixer app that used to let you adjust levels for different sound sources.  And Realtek's generic driver doesn't provide one either.  So just give us a way to adjust levels for different audio inputs!  Maybe I haven't Googled sufficiently and some hacker out there has one, but I kinda doubt it ... if it requires driver-level access as I suspect, Microsoft's new DRM-motivated hammerlock limiting us to signed drivers prevents us from fixing this ourselves.  (It also means we can't access our ext3 partitions without extreme measures, but that's another rant.)  So CAN SOME TOSHIBA ENGINEER PLEASE LET MANAGEMENT KNOW THEY'RE ABOUT TO DESTROY THEIR LAPTOP FRANCHISE OVER AUDIO ISSUES?  Just cut, paste, and forward a couple dozen of these threads.  Sure, it's a career risk but (wo)man up to it!  Audio really matters to laptop buyers nowadays ... without Skype, I'll have do carry Yet Another Device when I'm traveling.  Heck, I've personally bought at least 6 Toshiba laptops over the years and I'm starting to shop for a replacement.  Anything but Toshiba, I'm sorry to say :-(
    Oh, in case somebody has an idea of something else I can try, the specific model is PPM70U-1KC01DB

    Title says it all.  Mics used to work fine on this machine under Windows XP. Under Win7, except as I note below, the mic has inaudibly low volume with any Control Panel Sound settings. I've spent huge amounts of time trying to solve this. After seeing all the similar posts (with no solutions, it seems) from users of many different Toshiba laptops, I'm about to start spreading the meme across the Internet that Toshiba laptops can't use mics.
    I started by upgrading to Win7 then adding just the 64-bit drivers I need from Toshiba's support site. No joy.  Then I started from a clean Win7 upgrade (64-bit Home) using Toshiba's upgrade script.  Nope.  Installed latest generic drivers from Realtek.  Hmm .. some progress, maybe: now with some Sound settings I can get slightly more volume but the mic input is drowned out by white noise-ish hissing.  All right, disable any other sound sources I can adjust: disable Chicony webcam driver from Device Manager. Hmm, now mike volume can get fairly high but the hissing still drowns it out.
    Toshiba: At some level, this is a problem between Microsoft and Realtek, I know. But you can help us.  MS changed the audio model significantly since Win XP, including (god knows why!) giving up the little audio mixer app that used to let you adjust levels for different sound sources.  And Realtek's generic driver doesn't provide one either.  So just give us a way to adjust levels for different audio inputs!  Maybe I haven't Googled sufficiently and some hacker out there has one, but I kinda doubt it ... if it requires driver-level access as I suspect, Microsoft's new DRM-motivated hammerlock limiting us to signed drivers prevents us from fixing this ourselves.  (It also means we can't access our ext3 partitions without extreme measures, but that's another rant.)  So CAN SOME TOSHIBA ENGINEER PLEASE LET MANAGEMENT KNOW THEY'RE ABOUT TO DESTROY THEIR LAPTOP FRANCHISE OVER AUDIO ISSUES?  Just cut, paste, and forward a couple dozen of these threads.  Sure, it's a career risk but (wo)man up to it!  Audio really matters to laptop buyers nowadays ... without Skype, I'll have do carry Yet Another Device when I'm traveling.  Heck, I've personally bought at least 6 Toshiba laptops over the years and I'm starting to shop for a replacement.  Anything but Toshiba, I'm sorry to say :-(
    Oh, in case somebody has an idea of something else I can try, the specific model is PPM70U-1KC01DB

  • Is this yet another problem with 7.5 or is it just me . . .

    Upgrade seemed to be fine, at first . . . now I keep getting distortion on songs. It seems to be quite random and just because a song has been distorted when I've listened to it once doesn't mean it will be when I listen to it again! It's driving me insane. Is this yet another bug or have I done something wrong (apart from upgrading to 7.5).

    Hi Emlou,
    If you have a Windows based operating system such as XP -
    It seems to me that you are suffering what I am having the same problem with - the program takes up to much of your computer's processing usage. If you go into your task manager and watch performance as ITunes runs - you will see how much of the total computer usage it is taking at any given moment - that's why your songs are distorted, slowing, garbled, etc - the usage on mine spikes from 11% - 93% AT ANY GIVEN MINUTE! I have no idea why, but I have found that by going to your "Control Panel" and clicking on Quicktime you can adjust audio output to help. Click the audio tab, click Safe Mode Wavout only (checkbox) / Then adjust the "Rate" to 96kHz / Then adjust the "Size" to 16 bit. Close that and shut down and restart Itunes - it might help a little for you.
    Maybe someone out there can help us find out why we are suffering with all the CPU usage trouble and how to adjust that spiking.
    Thanks!
    Paul

  • Yet another No Service iPhone 4, second hand

    Hi all,
    Apologies for yet another topic about the No Service issue on the iPhone 4. I bought a secondhand iPhone 4 16GB 2 days ago after having a 3GS 32GB for 18 months with no problems. iPhone 4 was just over a week old when I bought it (warranty date shows when it was first activated), on the O2 UK network like my old one.
    All was fine for 2 days, was receiving and making calls and texts etc with no problems. But since late afternoon yesterday the phone has mostly said No Service. It occasionally goes onto O2-UK but with no bars of signal so calls and texts still fail immediately.
    I've tried all of the tips I can find online to resolve this, airplane mode on/off, reset network settings, restore from backup, restore as new phone, hard resets. But nothing's working.
    I can take out my SIM and put it into my 3GS, in the same location, and get 5 bars of signal, all my texts come through. Then put SIM back into iPhone 4 and straight away, No Service.
    I've made a Genius bar appointment for tomorrow afternoon, but I'm wondering what happens regarding the fact that I'm not the person who bought the phone in the first place? Will this be an issue?
    Thank you in advance for any advice about this, was so looking forward to having this phone and now, bleh!

    I spoke to o2, they checked my SIM is activated and said they don't need a record of my IMEI number. Still saying No Service so will have to see what the "Genius" says tomorrow!

  • Yet another Mac Book Pro (A1211/2.33 GHz) freeze problem

    Hi everyone,
    I have yet another freeze mystery, if people fancy having a crack at it.
    I had this notebook for about 4 and a half years and it served me well until 2 months ago. It is a 15' MBP from December 2008 (A1211) with a 2.33GHz Core 2 Duo and 2GB of RAM.
    Now I constantly get lags or freezes while I am using it.It manifests itself via the beachball and a frozen screen. First, I thought it was the hard drive but I replaced it with a tested new one and I still get the same behaviour. The reason I thought it was the HD is that it seems to freeze often when there was a lot of access to HD or memory. For example, firefox would cause a freeze quite often when it was trying to access the cache or history. I get the same behaviour when trying indexing my music for the genius feature. Often when I close applications, it will halt the system for about 2 minutes.
    I think the number of lags also correlates with temperature. I am pretty sure that the notebook's heat diffusion properties has deteriorated strongly over the past year as it seems to be using the fans a lot more extensively. The heatsink seems to get really hot these days as well. So my next step would be checking the thermal paste on the heat sink. Before I am going to do that, I want to consider any remaining options as dismantling the laptop up to the heatsink is a bit of a pain.
    My gut feeling would be that it has to do either with the memory or maybe some 'bridge' that transfers the data between HD, GPU, CPU and memory. I am aware that bridge is the wrong word and I am simplifying the architecture of the mainboard too much, but I am sure you get what I mean. The data rate between some of those is inhibited.
    The reason why I am saying some is that often the system seems overwhelmed by the amount of commands, just sits there and then resumes executing all of them as it had taken a break. This can be easily seen when streaming video in a web browser. I often get the beach ball and my whole screen freezes, but the movie, or at least the sound, keeps running in the background. After a while it usually resumes and shows the movie at the current playing position. Sometimes it doesn't recover, not even after 30 minutes and I have to switch it off.
    I hope I provided enough information for you guys to have a think about this.
    Any help in this matter would be gratefully appreciated.

    Before re-installing the operating system, which might also work, I found this article helpful:
    http://macs.about.com/od/usingyourmac/qt/Fix-Spod-How-To-Fix-A-Spinning-Pinwheel -Of-Death.htm
    I've followed the directions since they seem to make sense and am waiting for the next Pinwheel of Death. They seem to be saying the same thing you are Chris, but ascribe the problem to 'permissions' which are fixable (gasp) via the OS disc utility.

  • How to create backup file on itunes for ipod touch 4g game apps data? Is there a way to do it? I want to try an app on my friend's computer, but you can't add apps on another computer without having your own ipod's data being deleted. Thx for any help!

    How to create backup file on itunes for ipod touch 4g game apps data? Is there a way to do it? I want to try an app on my friend's computer, but you can't add apps on another computer without having your own ipod's data being deleted. Thx for any help!
    I want to know how to create a backup file (because I'm pretty new with itunes, and it's hard to use it for me still), how to store my app data/media/videos, etc. And how I can retrieve them back when I'm done with the app I tried on my friend's computer.
    If anyone can help, it'd be great! Thank you so much!

    Sure-glad to help you. You will not lose any data by changing synching to MacBook Pro from imac. You have set up Time Machine, right? that's how you'd do your backup, so I was told, and how I do my backup on my mac.  You should be able to set a password for it. Save it.  Your stuff should be saved there. So if you want to make your MacBook Pro your primary computer,  I suppose,  back up your stuff with Time machine, turn off Time machine on the iMac, turn it on on the new MacBook Pro, select the hard drive in your Time Capsule, enter your password, and do a backup from there. It might work, and it might take a while, but it should go. As for clogging the hard drive, I can't say. Depends how much stuff you have, and the hard drive's capacity.  As for moving syncing from your iMac to your macbook pro, should be the same. Your phone uses iTunes to sync and so that data should be in the cloud. You can move your iTunes Library to your new Macbook pro
    you should be able to sync your phone on your new MacBook Pro. Don't know if you can move the older backups yet-maybe try someone else, anyways,
    This handy article from Apple explains how
    How to move your iTunes library to a new computer - Apple Support''
    don't forget to de-authorize your iMac if you don't want to play purchased stuff there
    and re-authorize your new macBook Pro
    time machine is an application, and should be found in the Applications folder. it is built in to OS X, so there is nothing else to buy. double click on it, get it going, choose the Hard drive in your Time capsule/Airport as your backup Time Machine  and go for it.  You should see a circle with an arrow on the top right hand of your screen (the Desktop), next to the bluetooth icon, and just after the wifi and eject key (looks sorta like a clock face). This will do automatic backups  of your stuff.

  • New Problem - video loads, plays a bit, pauses, then plays without sound.

    On the first time that I used the TV-Out feature of the iPod, videos that normally were playing properly started to lag. The video would play about 15 seconds, then stop playing for a few seconds, then start again, but without sound. I just thought it might be because of the TV-Out feature, but after that incident, a large amount of my videos have been doing this, without using the TV-Out.
    My first use of the tv-out feature was around the time that I first updated the iPod firmware. I now realise that I have no need of the updated firmware, so would be willing to restore the iPod to factory settings, but would rather get some opinions first.
    Although these videos had played normally before, now they (and most all videos I have added since), do this when playing:
    Load up normally, play normally for about 15 seconds, pause and do nothing, then continue playing but without sound. If I use the clickwheel to skip ahead after it pauses, it will play normally for another 5 seconds or so and then pause and cut the sound again.
    I had not experienced anything like this before that first time I used the TV-out capability. Nor had I experienced it before updating the iPod. Now, many, but not all of my videos are doing this.
    Oh, it seems only the videos longer than 10 minutes are doing this... all the others work... some more testing would be needed to be certain. Video podcasts are playing fine. So... anyone else had this happen?

    This problem seems to occur for the 60GB models that are using the new firmware 1.1. It has been posted all over google and the only fix to this problem is to downgrade to 1.0. The problem is reported as not to affect the 30GB models but there are a few videos on my ipod (30GB) that suffer from this as well. I haven't downgraded by 30GB one to check if it fixes it, but I can assure you that it will fix the problem for the 60GB one (I used to have that one before).

Maybe you are looking for

  • Is it not recommended to use a partitioned external hard drive for time machine?

    1. i hv a 1 tb seagate  back up plus hard disc ..,,i want to make partitions for  using it for time machine, mac, and window repectively . is it not recommended to use a partitioned drive for time machine? some where i have red that time machine wont

  • Nokia E90 Map version

    Hello, I have a Nokia E90 which I bought in Nov 2008 and had the original version (I think it is v7.40.1.2 (Blue version)) of the maps installed on my phone. I then updated my maps and got the second version (Black functionality) which I did not like

  • No preview image available

    When I place various formats in an illustrator CS3 document, for most file types, no preview is avaialable, The same images and files preview in InDesign. As a work around we are using In design to visually search a collection of images through the p

  • Flash player 11.3 garbage?!?!?!

    I'm having problems with my flash player. I watch video and it crashes time after time as well as locks up.  Sometimes things won't even load.  I get the message that Adobe Flash Player has crashed.  Send a crash report. It also comes up that Flash p

  • Lightroom 4 reinstallation

    My hard drive crashed, completely. I was able to back up old pictures and such but no registry entries. I reinstalled LR 4 on the new hard drive (Windows 7). I tried to retrieve the serial needed to register it but, of course, it already has been. Th