Strange problem - not playing

I used my nano on the train yesterday morning with no problem as usual. However, got it out to listen on the way home, and no sound.
All the menus are working as normal, but 2 odd things:
1) no sound
2) when playing, every second count takes about 5 seconds. So it's as though it's playing very slowly (about a fith normal speed).
Tried a restore and then reload of my tunes last night, but still not working.
It's just run out of warranty (yesterday!!).
I didn't drop it or anything like that between it working fine and then not working.
Anyone got any ideas what might be wrong, or what I can try next?
Thanks,
Adam.

Is it an AppleTV1 or 2 ?
AC

Similar Messages

  • Quicktime problems - not playing videos.

    Every video file I view on QT looks like this:
    http://usera.imagecave.com/mervingiblet/Slide1.JPG
    It happened when I updated it a few weeks ago. Now I cant get rid of the problem. I tried uninstall and reload but to no avail.
    The sound plays but no video....
    Any ideas?

    What's really puzzling is that while playback of video podcasts is appallingly sluggish within iTunes (v7.3.2.6), if I browse to the relevant .m4v files and play them back in QuickTime or Media Player Classic they are as smooth as silk.
    All of which suggests the problem is nothing to do with codecs, or DirectX, or HDD access speeds or any of the other things Apple is bandying about, but is simply due to processor overheads within iTunes itself.
    iTunes has always been a bit of a resource hog and the problems that can cause have manifested themselves in various ways over the years, but I'm amazed Apple don't seem to be addressing these issues especially now that it involves visual media that customers have actually paid for. When people start talking of voting with their cash surely something needs to be done?
    Even more stunning is the fact that many Mac users seem to be suffering similar -- if not necessarily related -- problems with iTunes. For ages I put the problems with Windows iTunes down to Apple programmers' lack of experience with PC architecture, but these days I'm not too sure.

  • Strange Problem- Timeline plays empty frames after last keyframe?

    Once again, thank you all for being so supportive for this newbie!
    So I have this weird problem going on. Why is it that on my timeline (and in preview), my animation still plays after my last keyframe?
    In other words, my animation ends at frame 410 and there is nothing after that, but for some reason it still continues playing up to almost from 695?
    This causes my image to disappear in the frames after 410 when I intended for it to stay still after that (with no looping).
    How can I accomplish just making it stay still after frame 410? Basically it is just 3 roses blooming. I just want it to bloom when the viewer enters the webpage and stop after that. The last frame will make the image stay still (with the roses fully bloomed). Looping the bloom would be tacky and highly unnecessary.
    Thanks!

    I figured it out.
    Turns out it was a BUG.
    So I noticed that when I click one of the folders I put my layers in, it shows that it is 695 frames long. So weird because there is absolutely nothing after frame 410 when I check the layers in the folder individually.
    So what I did was I deleted one of the layers in the folder to see if that would remove the 695 frames. I just deleted it and then undid the delete. And VOILA! It became 410 frames and works fine now. It was definitely a bug as I did not do any other editing to fix it. Just temporarily deleted it and putting that layer back by undoing the delete.

  • Snow leoprd cause problems not playing videos in web pages

    i have installed snow leopard and the cvg website no longer plays videos ect of games ???? here is the link to see
    http://www.computerandvideogames.com/video_index.php?
    these played fine before install on leopard and works fine in firefox any suggestions

    I have the same problem, even with Apple videos from their site, if I start Safari in 32 bit they play fine, but a friend of mine no need to do that.
    Message was edited by: Edgar Carenzo_Gross
    Message was edited by: Edgar Carenzo_Gross

  • Ipod Problems (not playing/clicking)

    My ipod was acting up today..
    My computer wouldnt recognize it and it wouldnt update..
    Then.. it was freezing up and going real slow...
    the freezing stopped and everything worked except it wouldnt play a song... it sounded like it was trying to but then like clicked and didnt play...so i did the hold in menu and the center button to reset it... a folder came up wiht a ! in it in the restart that said "www.apple.com/support/ipod"
    now its playing and working but i dont think this will last
    anyone know whats going on? any more info you need just ask
    thanx in advance

    Try this article, it may help:
    http://docs.info.apple.com/article.html?artnum=61771
    I can't help you any more than that, sorry.

  • Strange Problem - All of my preloaded .swf files play at once

    Hey guys,
      I've been getting a strange problem that I haven't been able to debug.  I recently developed an interactive audio and video treatment program that users click through in which a master swf file (DTM-Start.swf) uses ActionScript upon first being loaded to load the rest of the program in the background.  Here's how the code looks: 
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.events.Event;
    // create movieclip objects to hold the loaded movies
    var intr1:MovieClip;
    var maladaptIntr1:MovieClip;
    var maladaptIntr1Loader:Loader = new Loader();
    var maladaptIntr1Request:URLRequest = new URLRequest("DTM-Maladapt1.swf");
    maladaptIntr1Loader.load(maladaptIntr1Request);
    maladaptIntr1Loader.contentLoaderInfo.addEventListener(Event.COMPLETE, maladaptIntr1Loaded);
    var intr1Loader:Loader = new Loader(); 
    var intr1Request:URLRequest = new URLRequest("DTM-Intr1.swf");
    intr1Loader.load(intr1Request);
    intr1Loader.contentLoaderInfo.addEventListener(Event.COMPLETE, intr1Loaded);
    function maladaptIntr1Loaded(event:Event):void
        maladaptIntr1 = event.currentTarget.content as MovieClip;
        maladaptIntr1.stop();
        addChild(maladaptIntr1);
        maladaptIntr1.y = -1000
        trace("maladaptIntr1");
    function intr1Loaded(event:Event):void
        intr1 = event.currentTarget.content as MovieClip;
        intr1.stop();
        addChild(intr1);
        intr1.y = -1000
        trace("intr1");
    function playIntr1() {
       intr1.y = 0;
       intr1.play();
    function playMaladapt1() {
        maladaptIntr1.y = 0;
        maladaptIntr1.play();
    So that's the idea.  What's strange is that when I load a .swf file compiled with AIR 2.6 (because the user interacts with the movie and a text file is output) it's fine too, but as soon as I add any actionscript, even if it's just a stop() command, to a .swf file compiled with AIR, the DTM-Start.swf loads and then plays all of the movies simultaneously so they're all going off at once.  Essentially, flash seems to be ignoring the maladaptIntr.stop() command in the Loaded function, for instance.  I just don't understand why adding any Actionscript whatsoever to a .swf compiled with AIR would make my DTM-Start do this.  I am very confident this is the issue too, because loading .swf files compiled with the FlashPlayer with action script are fine...AIR .swf files without Actionscript are fine too, it's only AIR .swf files with ANY actionscript that cause this problem....
    Any ideas?
    Much appreciated!
    Thanks,
    Ricky

    One solution is simply to have a stop() in the constructor of the document Class of each swf you're loading. Another solution is something like:
    package {
         class MainDocument extends MovieClip {
         protected var swfs:Array = ['DTM-Maladapt1.swf', 'DTM-Intr1.swf'];
         protected var positions:Array = [{x:0, y:0}, {x:0, y:0}];
         protected var movies:Array /*of  MovieClips*/ = [];
         protected var loadIndex:int;
         protected var playIndex:int;
         protected var curremtMovie:MovieClip;
              public function MainDocument() {
                   super();
                   loadMovie(loadIndex);
              protected function loadMovie(loadIndex:int):void {
                   var loader:Loader = new Loader;
                   loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
                   loader.load(new URLRequest(swfs[loadIndex]));
              protected function onLoadComplete(e:Event):void {
                   var mc:MovieClip = LoaderInfo(e.currentTarget).content as MovieClip;
                   mc.stop();
                   var position:Object = positions[loadIndex];
                   mc.x = positions.x;
                   mc.y = positions.y;
                   addChild(mc);
                   movies[movies.length] = mc;
                   loadIndex++;
                   if (loadIndex<swfs.length) {
                        loadMovie(loadInxed);
                   } else {
                        playMovie(playIndex);
              protected function playMovie(playIndex):void{
                   if (currentMovie) {
                        currentMovie.stop();
                   currentMovie = movies[playIndex];
                   currentMovie.play();
    Note that with this approach you don't need to create a whole new set of logic each time you want to add a new swf to load.

  • Playing from a URL (Strange problem)

    Hello,
    I am having this strange problem where when i play a video with JMstudio it plays. however, when i try to play the same video from a url it some what loads and crashes while loading.
    Note: I am running a web application in my local server that contains a video. So, i am trying to run the video from this url for example: http://localhost:8080/test/video/sky.mpg
    Any help
    Thank you
    D

    Hi captfoos the strange thing is If i run the video file using the webserver URL then it crashes. However, if i play it by passing an explicit path it plays the video fine. I am just a beginner so don't know much about JMF capabilities.
    And this is what i get when running through webserver URL it crashes the JVM.
    # An unexpected error has been detected by Java Runtime Environment:
    #  EXCEPTION_ILLEGAL_INSTRUCTION (0xc000001d) at pc=0x0011f798, pid=5312, tid=6788
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode, sharing windows-x86)
    # Problematic frame:
    # C  0x0011f798
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ---------------  T H R E A D  ---------------
    Current thread (0x05231400):  JavaThread "JMF thread: com.sun.media.amovie.AMController@13c5982[ com.sun.media.amovie.AMController@13c5982 ] ( realizeThread)" [_thread_in_native, id=6788, stack(0x05680000,0x056d0000)]
    siginfo: ExceptionCode=0xc000001d
    Registers:
    EAX=0x0011f704, EBX=0x0011f770, ECX=0x0011f990, EDX=0x7122f124
    ESP=0x056cf534, EBP=0x056cf5ac, ESI=0x04f96ab8, EDI=0x04a99650
    EIP=0x0011f798, EFLAGS=0x00010202
    Top of Stack: (sp=0x056cf534)
    0x056cf534:   04a91a74 0011f774 7122f124 04f96ab8
    0x056cf5a4:   04f80b68 d7552f7e 056cf5c4 71233c52
    Instructions: (pc=0x0011f798)
    0x0011f788:   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    0x0011f798:   ff ff ff ff ff ff ff 7f 00 00 00 00 00 00 f0 3f
    Stack: [0x05680000,0x056d0000],  sp=0x056cf534,  free space=317k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  0x0011f798
    C  [quartz.dll+0x13c52]
    C  [jmam.dll+0x490d]
    C  [jmam.dll+0x4aba]
    C  [jmam.dll+0x488c]
    C  [quartz.dll+0x1bd47]
    C  [quartz.dll+0x1c40d]
    C  [quartz.dll+0x1c95d]
    C  [quartz.dll+0x1c822]
    C  [quartz.dll+0x4ebf0]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.sun.media.amovie.ActiveMovie.openStream(ZZIJ)Z+0
    j  com.sun.media.amovie.ActiveMovie.<init>(Lcom/sun/media/amovie/AMController;Ljavax/media/protocol/PullSourceStream;ZJ)V+253
    j  com.sun.media.amovie.AMController.createActiveMovie(Ljavax/media/protocol/DataSource;)Lcom/sun/media/amovie/ActiveMovie;+263
    j  com.sun.media.amovie.AMController.doRealize()Z+66
    j  com.sun.media.RealizeWorkThread.process()Z+4
    j  com.sun.media.StateTransitionWorkThread.run()V+8
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x0526c800 JavaThread "Thread-3" [_thread_blocked, id=6864, stack(0x057e0000,0x05830000)]
      0x05250c00 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.video.mpeg.Handler" [_thread_blocked, id=7720, stack(0x05420000,0x05470000)]
    Other Threads:
      0x02482800 VMThread [stack: 0x04590000,0x045e0000] [id=1976]
      0x024a2800 WatcherThread [stack: 0x04980000,0x049d0000] [id=6072]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 960K, used 221K [0x245f0000, 0x246f0000, 0x24ad0000
      rw space 12288K,  53% used [0x2cdf0000, 0x2d45d300, 0x2d45d400, 0x2d9f0000)
    Dynamic libraries:
    0x00400000 - 0x00424000      C:\Program Files (x86)\Java\jre6\bin\javaw.exe
    .ll
    0x73e80000 - 0x73e87000      C:\Windows\system32\midimap.dll
    0x735a0000 - 0x735b3000      C:\Windows\system32\devenum.dll
    VM Arguments:
    jvm_args: -Dfile.encoding=Cp1252
    java_command: org.twc.dmr.MediaRenderer
    Launcher Type: SUN_STANDARDThanks again for helping me

  • I am having problems syncing recently recorded songs to my iPod. I am using an ion program to record vinyl records to iTunes. The songs are in the iTune library and will play on the computer. When I try to sync they show up but do not play. help

    I am using an ion piece of equipment to record vinyl reccords to my iMac and in turn save them in iTunes. I have recorded many records this way and have never had a problem until yesterday. I recorded three songs from records to iTunes and was successful as they are on the song list and will play on the iMac. When I tried to sync them to my iPod they showed up on the menu but would not play. The iPod just skipped over the new guys. Am I doing something wrong or has my ion program flipped out? Any help would be appreciated by this old man. Thankyou

    This might sound weird, but here's an idea which worked for me re music that was newly added to itunes and showed up in my ipod but wouldn't play - I simply played the tracks in itunes first, just a second of time or so will do it, not the whole track, then connect the ipod and sync again and this time they played - hope this helps.

  • I recently upgraded from an iphone 4 to a 4s, but now all songs purchased from iTunes will not play via my phone. Any idea how to fix this problem?

    I upgraded from an iphone 4 to a 4s, after a few initial problems and two restores, everythings seemed to be working...until I went to play some music, all music loaded to itunes via CD's played, but ALL purchased music from itunes does not play...i click on the song and the screen flashes to the image then goes back to the list of songs, so the purchased music shows up...just does not play.  Can anyone help resolve this problem? Thanks!

    here is an interesting thing: take the iphone and set lock screen to never. Now make an email with siri--be sure to activate her with call button. get to the body and get some text in there. then just stop talking. LOCK SCREEN APPEARS!!!!!! and of course you draft is gone.
    There does seem to be a work around for some--maybe all these issues. Don't use the call button--use the buttons on the phone.
    Siri seems to behave properly with scenerio above---sans call button. She does not go to lock.

  • When I have video clips on my timeline, they do not play in the monitor screen. I hear the sound track but can not see the image. To test if my new files are somehow the problem, I went back and used video files that I used successfully a year ago, and th

    When I have video clips on my timeline, they do not play in the monitor screen. I hear the sound track but can not see the image. To test if my new files are somehow the problem, I went back and used video files that I used successfully a year ago, and they no longer play in the monitor window. I hear the sound track, but do not see any video. Have I changed some setting that controls video playback in the monitor window?

    Randy Ruttger
    Thanks for the follow up.
    Missing in this equation were the version of Premiere Elements that you were using and the computer operating system on which it was running. But...
    The deed is done. But.....Until now and after you went ahead and moved to version 12, we now learn what version of Premiere Elements you were using. We still do not know the computer operating system involved.
    You just said Premiere Elements 10. Premiere Elements 10 is hit by a serious known display issue if the computer uses a NVIDIA GeForce video card/graphics card. In this issue, the only remedy is to roll back the driver version to about May 2013. The description of the problem and how to do the roll back are described in one of the Announcements at the top of this forum. What video card/graphics card does your computer use?
    On another front, Adobe will be releasing a new version of Premiere Elements any day now. No one but Adobe knows the feature set for the new version. That type of information is announced at the moment of release of the new version.
    So the remedy to the problem that you presented in this thread could have been...
    1. Rolling back the NVIDIA GeForce driver version to about May 2013 if possible (Windows 8 or 8.1 64 bit, may not be possible)
    2. Move to another version of Premiere Elements (which you did)
    I offer the above for consideration so that you can review your decisions. We are pleased to learn that Premiere Elements 12/12.1 works for you.
    Please do not hesitate to ask questions and ask for clarifications, but remember that the answers are in the details.
    Best wishes,
    ATR

  • My ipod classic has started making a mewing sound and all it does is scroll through the songs.  It will not play except when connected to my computer.  I tried resyncing and that did not work. How do I fix this problem?

    My ipod classic has started making a mewling sound and all it does is scroll through the songs.  It does not play on my Bose sound dock or through earbuds.  It will play when connected to the computer...but that makes it hard to take it on a walk with me   I thought it might be a synching problem so tried that--still doesn't work.  How do I fix this problem with out restoring it to the factory setting?  I do not want to lose all my music content as some of it I cannot replace easily.  Please help with suggestions and advice. Thanks.  Karen in GA

    Have you recharge your iPod for at least 2 hours, preferably till the Full charge Battery symbol comes ON.?
    See this Apple support Article
    http://www.apple.com/support/ipod/five_rs/classic/
    You did not by chance bought the Hello Kitty special edition?
    Have nice day!

  • My ipod classic will not play any of my sounds on it...can anyone tell me how to solve this problem?

    hi i am looking for help..i recently added new music to my ipod but it does not play them at all, i can press everything and nothing is stuck but it just wont start to play. i have checked the music volume to see if that was the problem but the sound is good ...i need help!

    So after the song has started, does the progress/scrubber bar move forward at all letting you know many seconds you are into the song? 
    Do the other songs you had previously synced to the device still play okay?
    Do these newly downloaded tracks play alright in iTunes?
    B-rock

  • TS1702 I am having problems downloading 2 purchased movies. Cars 2 & Toy Story. I had it on My iPad, then after a while the movies would not play. I went to the apple store and they deleted it and told me that all I need to do is download it again. Not wo

    Hi
    I am having problems downloading 2 purchased movies. Cars 2 &amp; Toy Story. I had it on My iPad, then after a while the movies would not play. I went to the apple store and they deleted it and told me that all I need to do is download it again. I tried what they suggested at the apple store, but I am still not successful. It continues to tell me there is a download error. Please help! Need these movies for my 3 year old!

    User to user forum.
    Apple is not here.
    You need to contact iTunes support:
    http://www.apple.com/support/itunes/contact/

  • Ive updated my iphone 4 to ios5 and the music will not play atall even though its all on the phone is anyone else having this problem?

    Obviously Ive had the same errors originally but the software has updated fine now. But for some reason the music on the phone will not play atall! with or with out headphones. It seems too just be staying at 0.00mins and even if I fast forward it it just stays at the particular mins fast forwarded to. Has anyone else had this problem?

    Similar symptom here.  I gathered from other threads that by removing all the songs and re-sync them back to iPhone4 would sort the problem!  I tried with one album and it seemed to have work fine!  So I removed all the songs and transferred them back again!  However, I could not launch Music app any more!  Click on Music and it just stopped, i.e. could not be launched!!!
    However, I noticed that I could still play all the songs through headphone control.  But if you play without the headphone plugged in, no sound comes out of the phone speaker!!!!!
    Aarrrgggggghhhhhhhhhhhhhh!!!!!!!!
    Apple - surely you must seriously look into this and come out with resolutions by now!  Would SJ step in by now????? RIP SJ!  Apple, in fact all of us, miss you - with diferent reasons !!!

  • File not picked up strange problem

    Hi all,
    I am doing File to file tranfer .
    my source dir is AL11 and i am ftp the file to reciver system .
    I am encountering strange problem .
    Some times my file adapter pick the file  and tranfer the files sucessfull  and sometimes  it does not pick the file . i trying to pick same files always  i.e *.txt
    in RWB cc it show no error . it gives message  polling sucess but no message id in it .
    i tried to deacitve and active the adapter , but it is of no use .
    if anyone  faced this type of problem please reply
    Thanks

    Hi,
    Some times file adapter will not pick the file it will be strange u cant find any error regarding it..........i thnik u have proper authorization for AL11 because file adapter is picking the file...
    check the processing parameters what is the mode of trasfer is it test or delete.....
    better to have NFS at both the ends or take NFS at sender side...
    Regards,
    Phani

Maybe you are looking for

  • Class not found error!!!

    Hello, I wrote a program that would read data from a file (present in one of my folders). I developed it as an applet and am able to see the result in appletviewer, but unable to see it in the browser(IE6-WIN2000). I did the HTMLConverter procedure a

  • Will Ideapad G475 supports for Win 8 Pro?

    I had try the Win 8 Enterprise Evaluation Edition which I downloaded from MSDN. I found that the Win 7 Drivers provided by Lenovo Support not all well supported by Win 8. There are few driver even facing installation issues while installing, which is

  • How can I restore my original game center account to my iPhone after an update?

    I just updated my phone to the latest ios thing. It deleted everything off of my phone, so it was brand new. Like, it could have just come out of the box. I finally got my contacts and music back, but 1. none of my apps will load 2. my gamecenter acc

  • Master table for Qualification ID (In SERVICE Product)

    Hi friends, Could you please help me out with master table for Qualification ID and its description? Thanks, Debasish

  • ODI Staging Area Confusion

    Hi, I am following an ODI Tutorial from http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/odi/odi_11g/odi_project_ff-to-ff/odi_project_flatfile-to-flatfile.htm. Basically it is writing a flat file to another flat file. My question in this