(help) IPOD 30G VIDEO PROBLEMS

I already inserted 5 videos in my ipod and is running very well but I can not pass from the first to the second automatcally when the first file finish I have to select the second and so on... and if I create only one file with the 5 videos I can not pass for second I have to wait the first video finish..
How can I solve this problem?

I'm having the same issue with my new 30G. Did you ever solve this problem?

Similar Messages

  • HELP- IPOD 30G VIDEO

    I already inserted 5 videos in my ipod and is running very well but I can not pass from the first to the second video automatcally when the first file finish I have to select the second and so on... and if I create only one file with the 5 videos I can not pass for second I have to wait the first video finish.. I want to select one video and when the first one finish the ipod should play the seconde one automatically as happen with the music files
    How can I solve this problem?

    Just put each video on a different playlist and when you want to change just pick a different playlist...good luck..fobtaicss

  • IPod 30g video photo storage question

    Can I use iPod 30g video as my iPhoto backup? My question is, does it store original photo full size? Do I have to resize my photos before I send them to my iPod? I only need less than 10g for my music, the rest I plan to use for photos. Thanks Alex

    You are correct, the iPod does NOT come with a charger, most of us here are disappointed with that, that would be an extra $30 out of your pocket to get. Yes USB is the cable it uses. You can charge it through the computer or (if you have the adapter) through an outlet, via usb. As far as the iPod mini connection, I think it may be different, but I could be wrong, never owned one I'll look into that.
    Actually I don't want to say anything, I really don't know, lol, and you are welcome Alex good luck with your iPod and enjoy .

  • ITunes 7.0.1 & iPod 30G video--freeze while trying to synch/update.

    I updated to iTunes 7, and then to 7.0.1 a few days ago. I have had no problems downloading/uploading (other than the fact that downloads are much slower than in version 6) or playing music or videos in iTunes 7 or 7.0.1, however, I have been unable to synch my 30GB video iPod with iTunes. I haven't been able to upload any of my new downloads since going to iTunes 7 or 7.0.1--frustrating! I plug in my iPod, iTunes starts up, it starts the synch, and within seconds I get the spinning beach ball of death. The progress bar stops moving at about 1/3 of the way across. I don't get any error messages, it just freezes. I left it for over an hour and no progress. I have to force quit iTunes, usually twice, to get it to stop, and then when I try to eject my iPod I get a message saying the iPod is in use by another user. I rebooted my iPod, to no avail.
    The second aspect of this issue is that I didn't update my iPod to 1.2--assuming that has anything to do with present problems, but maybe not--before I updated iTunes, and now I can't. Since iTunes freezes when I have the iPod plugged in, I can't access the iPod preferences menu, can't update, nothing...
    I am a new iPod user, and am by no means techno savvy, so please forgive me if I am overlooking the major and obvious. I have spent a lot of time combing various forums/discussions, and haven't found any answers. Any help appreciated!
    PowerMac G4   Mac OS X (10.3.9)   iPod 30G video

    Seems that way. I think I am going to have to give in and spend hours on the phone with Apple support. I don't want to, but I am at a loss. I will share any discoveries...

  • CompUSA USB 2.o Card, iTunes 7.02, iPod with Video Problem

    I just purchased a new 80 gig iPod with video and had to upgrade my MDD Duak 1 Ghz for USB 2.0, as transfer in USB 1 takes far too long. I purchased a card from CompUSA (SKU 304244) which adds two external ports only. When I attempt to transfer files into the iPod it seems to function at the faster speed, but will then freeze on a file, not allowing me to eject the iPod or sometimes to even force quit iTunes. I have tried this several times and there is no consistency regarding how many files have transferred or their size as to when the freeze will occur.
    I originally tried this without adding a driver (using OS X 10.4.8), then I added the one from the included disc - same results. I then re-installed the 10.4.8 updater thinking this might have a more recent driver, but things are still the same.
    I don't have any other USB 2 devices to use to test the card.
    Any suggestions would be appreciated.

    Not all of the USB2 PCI cards out there are completely compatible with Mac as they claim to be.
    I tried a two-port IOGear card that had that same problem.
    Replace it with a 5 port (1 internal and 4 external) Belkin and it works just fine.
    Someone has had a list somewhere of the ones that work best. I know that Belkin is one of the good brands to buy for loading a video iPod on a PowerMac. There are others, though.
    You might find more on it in the video iPod board.

  • Please I really need help with this video problem.

    Hi!
    Please I need help with this app I am trying to make for an Android cellphone and I've been struggling with this for a couple of months.
    I have a main flash file (video player.fla) that will load external swf files. This is the main screen.When I click the Sets Anteriores button I want to open another swf file called sets.swf.The app is freezing when I click Sets Anteriores button
    Here is the code for this fla file.
    import flash.events.MouseEvent;
    preloaderBar.visible = false;
    var loader:Loader = new Loader();
    btHome.enabled = false;
    var filme : String = "";
    carregaFilme("home.swf");
    function carregaFilme(filme : String ) :void
      var reqMovie:URLRequest = new URLRequest(filme);
      loader.load(reqMovie);
      loader.contentLoaderInfo.addEventListener(Event.OPEN,comeco);
      loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progresso);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE,completo);
      palco.addChild(loader); 
    function comeco(event:Event):void
              preloaderBar.visible = true;
              preloaderBar.barra.scaleX = 0;
    function progresso(e:ProgressEvent):void
              var perc:Number = e.bytesLoaded / e.bytesTotal;
              preloaderBar.percent.text = Math.ceil(perc*100).toString();
              preloaderBar.barra.scaleX =  perc;
    function completo(e:Event):void
              preloaderBar.percent.text = '';
              preloaderBar.visible = false;
    btHome.addEventListener(MouseEvent.MOUSE_DOWN,onHomeDown);
    btHome.addEventListener(MouseEvent.MOUSE_UP,onHomeUp);
    btSets.addEventListener(MouseEvent.MOUSE_DOWN,onSetsDown);
    btSets.addEventListener(MouseEvent.MOUSE_UP,onSetsUp);
    btVivo.addEventListener(MouseEvent.MOUSE_DOWN,onVivoDown);
    btVivo.addEventListener(MouseEvent.MOUSE_UP,onVivoUp);
    btHome.addEventListener(MouseEvent.CLICK,onHomeClick);
    btSets.addEventListener(MouseEvent.CLICK,onSetsClick);
    function onSetsClick(Event : MouseEvent) : void
              if (filme != "sets.swf")
                          filme = "sets.swf";
                          carregaFilme("sets.swf");
    function onHomeClick(Event : MouseEvent) : void
              if (filme != "home.swf")
                          filme = "home.swf";
                          carregaFilme("home.swf");
    function onHomeDown(Event : MouseEvent) : void
              btHome.y += 1;
    function onHomeUp(Event : MouseEvent) : void
              btHome.y -= 1;
    function onSetsDown(Event : MouseEvent) : void
              btSets.y += 1;
    function onSetsUp(Event : MouseEvent) : void
              btSets.y -= 1;
    function onVivoDown(Event : MouseEvent) : void
              btVivo.y += 1;
    function onVivoUp(Event : MouseEvent) : void
              btVivo.y -= 1;
    Now this is the sets.fla file:
    Here is the code for sets.fla
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    var video:Video;
    var nc:NetConnection;
    var ns:NetStream;
    var t : Timer = new Timer(1000,0);
    var meta:Object = new Object();
    this.addEventListener(Event.ADDED_TO_STAGE,init);
    function init(e:Event):void{
    video= new Video(320, 240);
    addChild(video);
    video.x = 80;
    video.y = 100;
    nc= new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS, onStatusEvent);
    ns.bufferTime = 1;
    ns.client = meta;
    video.attachNetStream(ns);
    ns.play("http://www.djchambinho.com/videos/segundaquinta.flv");
    ns.pause();
    t.addEventListener(TimerEvent.TIMER,timeHandler);
    t.start();
    function onStatusEvent(stat:Object):void
              trace(stat.info.code);
    meta.onMetaData = function(meta:Object)
              trace(meta.duration);
    function timeHandler(event : TimerEvent) : void
      if (ns.bytesLoaded>0&&ns.bytesLoaded == ns.bytesTotal )
                ns.resume();
                t.removeEventListener(TimerEvent.TIMER,timeHandler);
                t.stop();
    The problem is when I test it on my computer it works but when I upload it to my phone it freezes when I click Sets Anteriores button.
    Please help me with this problem I dont know what else to do.
    thank you

    My first guess is you're simply generating an error. You'll always want to load this on your device in quick debugging over USB so you can see any errors you're generating.
    Outside that, if you plan on accessing anything inside the SWF you should be loading the SWF into the correct context. Relevant sample code:
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    context.applicationDomain = ApplicationDomain.currentDomain;
    var urlReq:URLRequest = new URLRequest("http://www.[your_domain_here].com/library.swf");
    var ldr:Loader = new Loader();
    ldr.load(urlReq, context);
    More information:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7de0.html
    If you're doing this on iOS you'll need to stripped SWFs if you plan on using any coding (ABC) inside the files. You mentioned iOS so I won't get into that here, but just incase, here's info on stripping external SWFs:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/

  • IPod 30GB Video Problem

    Hey, guys. about 3 1/2 months ago, my sisters iPod 30GB Video, stopped working, and its dead, which when we get a charge, and we boot up, it hangs on a Apple Logo, and we cant figure out whats wrong, Apple can fix it, but it will cost us, about 179 Dollars. and she doesnt want to spend 179$ on an already purchased iPod, ugh, Apple is losing its magic touch.
    -DID (Developer in Distress)
    James Maloy

    If you do not want spending another $180 for the iPod, then you might as well buy a new Classic since the problem on your sister's video won't fix itself unless you send it to Apple after you do everything that says in the Troubleshooting page.

  • HELP - iPod 30G - I need software version 1.0

    I have an iPod 30G. My Volvo car has an iPod adaptor, which only works with:
    3rd Gen V 2.3 - 4th Gen V 3.0.2 - Photo V 1.0.
    The adaptor cannot be undated.
    How can I change my iPod from 1.1.1. to 1.0?

    Well, even if you got 1.0 for the iPod with video, it is not the same as 1.0 for the iPod with color display/iPod photo.
    Does the iPod work the way it is now? Test that out. Sometimes iPods work even if they have newer software.
    If not, you could try changing the software to 1.0 using the steps below. Know, however, that the adapter says iPod photo software 1.0, and you would be putting iPod with video software 1.0. See if it works now first. Anyhow, here is how to put 1.0 on your iPod (and know that it is best to keep everything up to date)...
    First, please download the older version of the iPod Updater here...
    http://appldnld.m7z.net/content.info.apple.com/iPod/ww/win/061-2225.20051128.PDW nw/iPodSetup.exe
    Now install that updater and restart your computer.
    Now open the iPod updater (Start-->all programs-->iPod and find the iPod updater you just installed
    Open the iPod Updater and connect your iPod. With that older version of the iPod updater you just installed, restore your iPod by clicking restore.
    The iPod will restore and go back to software version 1.0. Now reload everything back into iTunes.
    If you don't want to restore, see this...
    http://discussions.apple.com/messageview.jspa?messageID=1813873
    btabz

  • CompUSA USB 2.0 Card, iTunes, iPod with Video Problem

    I just purchased a new 80 gig iPod with video and had to upgrade my MDD Duak 1 Ghz for USB 2.0, as transfer in USB 1 takes far too long. I purchased a card from CompUSA (SKU 304244) which adds two external ports only. When I attempt to transfer files into the iPod it seems to function at the faster speed, but will then freeze on a file, not allowing me to eject the iPod or sometimes to even force quit iTunes. I have tried this several times and there is no consistency regarding how many files have transferred or their size as to when the freeze will occur.
    I originally tried this without adding a driver (using OS X 10.4.8), then I added the one from the included disc - same results. I then re-installed the 10.4.8 updater thinking this might have a more recent driver, but things are still the same.
    I don't have any other USB 2 devices to use to test the card.
    Any suggestions would be appreciated.
    MDD G4 Dual 1 ghz. 1.75 GB Ram   Mac OS X (10.4.8)  
    MDD G4 Dual 1 Ghz. 1.75 GB Ram   Mac OS X (10.4.7)  

    Apologies for accidentally posting this under the wrong topic.

  • Ipod 30g Video Repair Help

    Alright, I've had my 30gb Video for about 2 years and everything worked fine until recently.
    About two weeks ago I left my Ipod in my car while I ran into a store (everything was working fine) and when I came back I noticed my Ipod screen was all messed up. It looked like there was a crack under the screen; there were gray splots everywhere and different colored lines running across the screen horizontaly and vertically. Besides that, everything else works fine on it--the screen still lights up, Music still plays/syncs normally, it's just really hard to read sometimes. I have no clue how this happened, im pretty sure I didn't drop it or step on it or anything.
    My question is should I send it into Apple to get it repaired, and how much would it cost? (I don't have an extended warranty)
    Thanks!

    Sounds like you have a broken LCD screen, so you must have knocked it or something without noticing it. Do you keep it between the seats where it is likely to get bumped?
    Anyway, Apple will not cover broken LCDs under warranty. You would have to get it fixed with a third party vendor. Search the web for "ipod repair" and you will find lots of them.
    Sorry,
    Patrick

  • Dead ipod 30G Video

    The battery ran down on my ipod and now when I connect it to me computer (Dell laptop) nothing happens. The ipod does not respond to anything, the screen is black and the computer will not reconize that it is connected. Not sure what to do. I purchased the ipod on 1/10/06.
    Please help
    30G ipod video   Windows XP  

    Well, if you let the battery drain completely, you will have to let it charge for about 10-20 minutes before it has enough power to run it's operating system software. Have you let it charge for that long?

  • IPod 30G video using 2 computers to manage iTunes-yikes!

    I have 2 iTunes libraries, by purpose or by mistake! My home computer does not have a fast connection (dial-up), so I loaded my CD's from home on it and on to my iPod. My work computer has a T1 line, so I today loaded my iTunes software on it and downloaded some videos and a couple of songs. But then in the process of transferring them onto my iPod, I apparently erased my songs which were already on there. I think I clicked a message box incorrectly. Now my iPod has the video and downloads, but no songs from home. I can't get my home library of songs/cd's back on the iPod. That same message box keeps popping up and I'm afraid to click it again, probably losing my downloads from work.
    1) How can I make my home computer my main iPod computer and just use the work computer for downloading? And then transferring the downloads back to my home library.
    2) How can I copy my home library/computer songs back onto my iPod, keeping the videos and downloads from today?
    3) What settings should I have on home computer iTunes and work computer iTunes so this doesn't happen again? I think it has something to do with manual updates? Which computer (home/work) should have manual and which should be automatic.
    I am very frustrated as I know what I'm trying and want to do, but can't figure out how to do it! I am setting the iPod aside until I can find out what to do, so I don't make things worse (either erasing the iPod or the computer, or both!)
    THANK YOU so much for your help and advice!

    "The iPod "iPod" is linked to another iTunes music library. Do you want to change the link to this iTunes music library and replace all existing songs and playlists on this iPod with those from this library?"
    Yes, that's the box I clicked 'yes' to in order to get the downloads onto the iPod, and then my songs already on the iPod disappeared. When I clicked 'no', (first), I couldn't get the downloads on, nothing happened. So then I clicked 'yes' ...
    What should I have done? What should I do the next time?
    Thanks again!
    Daisy

  • Help me with video problems please..

    Hello my good ppl, i have a prob.of transfering my movies from comp. to Itouch.
    I just bouth it, used to have nano before...so i am not familiar with watchin movies on ipod, anyway...problem is that any time i try to drag a movie file from comp to lybrary in Itunes...nothing happens as the format is not supported and all...i am desperate , what should i do? What formats are suported?. I manage to drag and drop a clip from my camera and converted it to Ipod, although no sound was played. But the main reason i bouth it is the movies, so i dont know what to do.
    Thank you in advance, your Dex

    Well for videos you already have you can use a converter. Here is a good one: http://www.ipod-video-converter.org/
    That's what i used to do.
    Now i just buy everything from iTunes. It's alot easier. You don't have to go through all of those hassles like converting it to the right format and then having it not look good or the sound not being there. So for best results i would say buy/rent them from iTunes. It's alot easier.

  • Creative lab xdoc and iPod classic video problems

    I purchased a creative lab xdoc which connects my ipod classic to my home theatre system, everything works except for the video portion, for some reason the ipod classic does not work with it,the question here is if Apple is working on a software upgrade so that we can use the video feature on the classic ipod,it is a shame that people try to be up to date with technology, but instead we get stuck with electronics that do work with later model, only with OLDER MODEL, i don't see the glory on this, do you?
    Any help or guidance will certainly be appreciated
    Rgds
    watsal

    I purchased a creative lab xdoc which connects my ipod classic to my home theatre system, everything works except for the video portion, for some reason the ipod classic does not work with it,the question here is if Apple is working on a software upgrade so that we can use the video feature on the classic ipod,it is a shame that people try to be up to date with technology, but instead we get stuck with electronics that do work with later model, only with OLDER MODEL, i don't see the glory on this, do you?
    Any help or guidance will certainly be appreciated
    Rgds
    watsal

  • Computer idiot needs help Ipod 30G

    I followed the quick start but they sure are unclear I plugged in the ipod to the USB and it says do not disconnect with the battery charging sign is this right am I on the right track? How long will this go on? This is a very expensive toy for kids or adults and the instructions are very vague this is all my son wanted and I can't for the life of me figure it out and frustration is setting in quickly. any help will be great.
    thanks so much
    Stephanie

    Yes, you are on the right track. As stated in the included instruction manual, you will need to charge your iPod for four hours or until the display changes so that it shows a power plug (meaning that it is fully charged).
    Also note that while your iPod is charging, you can also add songs and videos to it.

Maybe you are looking for