Support for new dead iPod Video?

I just received from Apple the new iPod Video last Thursday. I was familiar with earlier versions and was impressed with the video quality. I loaded tons of songs and thousands of pictures. Downloaded Desperate Housewives since there is nothing else worth watching from the Apple store. The iPod started turning itself off within 1 day. The only way to turn it back on was to press center and menu keys. It worked for a day or so.
I called Apple Support and was asked to do a restore from the original computer, which happened to be PC desktop at home. I did, nothing changed.
I am Technology Coordinator at the school where we have about 450 Macs so I am fairly familiar with Apple support and technology part.
My mom died and I flew to Europe on Saturday. Before that I loaded tons of pictures and videos to the laptop to show my family. I bought protective case and do not even have a scratch yet but the iPod died. I took iBook with me and have many PC laptops around here but iPod can not be revived. I tried everything to reset, restore that thing. Hard drive does not spin, screen is black, it does not even drain any power from USP port. I can not get to any of my pictures out of it. I should have transferred them all to the iBook before but that would have erased the existing old l-Tunes Library. Now I am SOL.
I purchased Apple Protection plan for the iPod so I felt safe. Well, I filled out the online case now, got the numbers and nothing happened. Promised email never came, dead silence. Tried again, same thing. Well, I am not going to call Apple Support from Europe and spend a fortune to wait for my sorry turn. Needless to say I am little PO'd.
I live online and can process tons of school emails from Europe but I can’t get to Apple.
Major pain.

Check this out.
iPod battery doesn't charge.
Sometimes if the battery gets completely discharged, simply connecting to a USB port on the computer doesn't supply enough power to "kick start" the charging process. In theory it should do, but yours seems to be a common problem.
Do you have access to a wall charger?

Similar Messages

  • BIOS SUPPORT FOR NEW CPUS!!!!

      hello
    new post , i just got this board (6547 v1.0) board with a celeron 1.7 (clocked at 125mhz ) 2.14ghz and is total stable.
    v1.8 bios support up to a 1.8 cel, are they going to make a update to support a 2hz cel, OR  have they droped support for it.
    and where can you get beta bios for this and other board (msi-development site).... ?(  ;(
    MAKE A VOTE (HOW OLD IS YOU BOARD AND HAVE THEY DROPED SUPPORT FOR NEW CPU,S FOR YOU BOARD-POST?

    assuming its a 645 ultra by the bios numberlink

  • Support for new Nvidia Quadro gpu?

    When support for new Nvidia Quadro gpu? For example Nvida Quadro K2200 and K4200
    Thk

    What do you mean when you say "support"? All of After Effects OpenGL features already work on those cards.
    The only thing that isn't supported on those cards is GPU acceleration of the ray-traced 3D renderer, which is an obsolete and almost entirely irrelevant feature. No more GPUs will ever be added to the list of cards supported for that feature.
    Details:
    GPU (CUDA, OpenGL) features in After Effects

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • Why no firewire support for new iPods?

    If firewire is so much better and faster why did the geniuses at Apple decide to discontinue support for it? It took me over 30 minutes to upload music & videos to my new iPod w/ USB, which would have taken 5-10 minutes with Firewire. I don't get it!

    They did it because they obviously didn't see the need for it.
    Either you have a usb 1.1 port, or have about 500mb of music. The speeds aren't that different between USB2.0 and FW. In fact, i think USB is faster. Stop complaining here, this is only a user-user support forum.

  • Displayport video input support for new 27" iMac

    Does anyone know if the new 27" iMac just released today has support for displayport video input like the previous generation 27" iMac does? Please tell me you haven't taken this awesome feature away in the midst of the change to Thunderbolt ports etc! I'm asking because in the previous gen iMac specs it clearly states that displayport video input is supported but it doesn't mention it in the tech specs section of the new iMac.
    Could someone from Apple please let me know? Thanks.
    Mike

    I am tempted to go out and buy a new HDMI to mini-displayport adapter and connect it to a new iMac at the Apple store to see for myself........
    I'd hold up on that.  I don't see a mini displayport on the new iMac.  Looks like it goes through the Thunderbolt interface.  Scroll down to connectors.
    http://www.apple.com/imac/specs.html
    Captfred

  • Dead Ipod Video- Bad battery?

    Hi - helping a friend with his 30Gb Ipod Video (5g).
    It doesn't do ANYTHING. No power, doesn't respond when I hook it up to my mac, and the mac won't mount it. No noises, no lights, no HD activity. Tried resetting it, opened it up and made sure all the connections are good, looks fine. Tried two different cables on 2 different Macs.
    IF this thing has a completely dead/malfunctioning battery, would it behave this way? Wouldn't it run on power from the USB? I don't want to have him order a battery if thats not the issue.
    Thanks for any opinions.

    You may STILL need to reset it.
    Put the hold switch to the OFF/White position. Now toggle it ON/orange then back off again. Then press and hold both the MENU and center buttons on the iPod and hold them for a good 15 seconds or so. Your iPod should reboot starting with the Apple Logo screen.
    If it doesn't work the first time, give it a second or third go. Sometimes it takes a few/several tries.
    See this thread as an example of what I mean by needing to try it many times...
    http://discussions.apple.com/message.jspa?messageID=5065208
    Also try it while plugged into a USB port so there is power for the iPod, preferably after it has been plugged in for a good 15 minutes or so in case the battery was so low that it needs to trickle charge first before it can start.
    http://www.apple.com/support/ipod/five_rs/
    Patrick

  • INFO about new 80GB ipod video

    Hi,
    i'have (may be) a very stupid question about the 80gb ipod, but i'm a new ipod customer so...i don't know
    Well: the real capacity of the ipod 80 gb's hardisk is pratically 74 gb? and not 80 gb?
    Sorry for the basically question!
    Bye
    G4   Mac OS X (10.3.9)   ipod video 80gb

    All hard drives never have the full advertised storage space, and as a general rule it's around 7% less than stated.
    It's because hard drive manufacturers calculate hard drive space different than computers actually read it.
    For a full technical explanation, see these.
    iPod: About the hard disk size.
    Hard disk: Is it missing space?
    How much stuff will fit on my iPod?

  • CS5.1 support for new DSLR cameras (D600)

    I would like to understand the business decission (if there is any) why Adobe decided that for new DSLR  cameras support they will update only the Camera Raw version for the current release CS6 and not respecting the legacy for the n-1 release (updating the Camera raw for CS5.1).  This is a serious concern and disapointment.  Does it means that each time Adrobe has a new release , if i chnage the DLSR i am FORCED to upgrade and pay 190$ eventhus I do not need the new release features?

    Ah, thanks guys - I am very very happy to eat crow on that one!
    The actual point of my post was to make me feel better, and boy did it work!    I did not expect any actual relief, so actually now the post is twice is good as I thought - I was actually wrong!
    Anyway, I might mention (I didn't get into all the details) that I actually canceled the order for the d800e (the "e" version was backordered until just recently), as the d600 was just announced as my order was about to process.
    So actually I am in the same bad situation as the previous poster, but maybe now I will go back to the d800 - saving a $450 upgrade to CS6 actually saves half the difference in price between the cameras.
    And sorry for the rant on the 2 analogies.  It was not a troll.  I vaguely remember in my research that Lightbox comes with ACR, is that true?  Lightbox doesn't come with CS5.5 MC, but I wonder if i were to buy it ($99??) that'll give me the latest ACR that supports the d600, and problem solved.  I assume once i have the latest ACR it'll let me open straight into PS and not make me go through Lightbox and then PS?
    Anyway, if that is correct, that would be a much better answer to the original poster (and it saves him $100).  Other good answers (if this Lightbox hack won't work), might be:
    "It's an incredible amount of work to support nearly every camera and lens ever made in ACR, so even though it comes free with your software, you don't get free updates once your software moves to a new version."
    or
    "The d600 began shipping nearly immediately upon announcement, and it takes a while to update the software."  (perhaps the responder didn't realize it, but this was the situation with the d600.)
    But the car-story and "if you can afford a new camera, you can afford to pay adobe" were pretty tragic answers - someone needed to call you on it, or you would have only served to upset the original poster.
    Ha, PEBKAC, that is pretty good.  Not very easy to pronounce, though.
    I must say my last dozen interactions with adobe have all been negative, except this one, so maybe things are turning a new leaf.  You're lucky I didn't get into the story of when my HD crashed, and I had to call Adobe to re-activate my old CS4 PS.  It's awesome getting literally laughed at by the activation help desk person.  (I had owned the software for 3 years at that point, and had only ever activated it once.)  ...who just assumed I was lying.  "here now let me tell you how to deactivate the old version" "the HD is dead, it ain't going to happen" "well let me show you again, because you need to do that..."
    Oops, I did get into that story, didn't I?
    Best,
    Inline

  • Completely dead iPod Video

    My daughter has an iPod video, it's approximately a month old and it's dead. She's tried all the self fix suggestions found here and it still doesn't work. It does work when connected to her computer, as soon as she disconnects from the computer it's dead. Of course Circuit City won't do anything for us because it's over 14 days since date purchased. Any suggestions? This iPod was to replace the mini she ran into the ground. All this money spent and she can't enjoy it. Any help is greatly appreciated.

    First of all you should be able to return the units to CCity if you’re having a problem with it.
    I return 2 IPOD shuffle twice and on the last exchange I even upgraded to the NANO, with no additional charge because prices fell. The store return policy should be 30 days of purchase; the 15-days usually applies to computer software etc.
    You should contact the store manager for a replacement before the 30-day period takes effect; make sure you have your original receipt.
    In addition you can try doing a manual reboot by pressing Menu and Center button; at least 6 seconds simultaneously and see what happens.
    Also make sure your HOLD button on top of IPOD is not ON.
    Try for starters.

  • New, cheap, ipod video... 80GB

    I'm looking for a NEW 80GB Video I-Pod. The problem is im not sure i want to spend $349.99 for a simple music player. I was wondering since you are all getting started if you happened to know the cheapest place to find one... Thanks for the help!!!

    As far as I know you can not get a NEW 80GB iPod for less than $350. Sorry mate, but you are out of luck.
    Furthermore, this is a site were people come to get help with their Apple products; if you do not like the help/advice you are getting then you can LEAVE.
    Prof.

  • No iMovie Support for MPEG 1 Muxed Video?

    When I installed the new iMovie as a part of iLife 08, my iPhoto video's were imported into iMovie...I thought. However, only six of my 400 video clips came across. I called Apple Care and was informed that MPEG 1 Muxed video - the format used by virtually every high end Sony compact digital camera I've owned - is not supported. I was told that, using QuickTime Pro, I could individually convert each video clip in my iPhoto database to MPEG 2 or 4, 4 being the most robust format. That's a major hassle, to say the least. It doesn't seem that Apple would intentionally exclude the video taken by a vast number of iPhoto/iMovie users - Sony camera owners - but it looks like I may be mistaken. Thoughts? ideas? workarounds?

    Apple is meant to be about plug it in and work with it, not spend 2 weeks of ** trying to find information on how to do stuff.
    What you say is essentially true. However, IMHO there is a reasonable expectation that the item "plugged in" will be of the same form of technology as that into which it is plugged. For instance, I would never expect to "plug" a V2 rocket engine into a 1969 XKE Jaguar in place of the standard 6.2 liter gasoline engine and expect it to simply "work out of the box." Not all video is equal. MPEG-1 and MPEG-2 muxed compression was not invented by Apple, the exclusive right to its use does not belong to Apple, and the spatial synchronization technology involved is different than Apple's own temporal synchronization technology.
    How about apple just buy streamclip MPEG and integrate it into imovie 08 so that it is possible for it go say "this is a video I can't work with, please wait a moment whilst I reconvert it for you"... **, why not add it to iPhoto as well, so that it would do it when u add these videos from your camera and avoid the nasty iMovie issues.
    Not a bad idea, but who pays for it? First of all, the QT structure does not reside within the applications themselves. They are now a fully integrated part of the operating system. (Ever wonder why you can't "downgrade" a QT update that is causing problems on your system or why people advise that you "wait and see" before installing?) So essentially, the operating system itself, as well as, all sub-systems and applications will have to rewritten, or at least modified, to properly interface with this new "hybrid" engine that you propose that Apple create. And if Apple is to integrate 2-decade old MPEG technology that pre-dates Apple's own technology and which has never been fully supported previously, should they not also include support for similarly aged interleaved compression formats (yet another synchronization technology) which are no longer supported even by their own creators? What about support for other current but proprietary codecs like VidX or WMP? While you may not want all of these different things supported, the man standing next to you probably does.
    How much are you willing to pay? Surely Apple is going to pass the cost of research, development, and software maintenance on to the users. Will you spend an extra $225 to $250 to have muxed MPEG, DivX, WMV support "built in?" I'm not. Nor am I willing to foot the bill for outdated/abandoned AVI technology which I don't even use. I personally prefer to embrace the current modular approach and purchase/add only those components which I need on a daily basis but the person down the street doesn't use at all. Call it "freedom of choice" or call me a "cheapskate," but it is the way I feel about the matter. To me, it seems to boil down to a matter of "dollar$ & $ense." (Frankly, I would much prefer that Apple fix the current problems with its own supposedly "fully" supported compression formats before "mucking" about in the back yards of other manufacturers'. Of course, that is only my own personal opinion and I'm sure every reader out there as his or her own agenda here.)
    This is not a technical issue. This is a usability issue. i refuse to trawl through my photo collection, re-encode them (even by batch process) and save back to their original locations.
    Oh, I can agree that this is a usability issue, but only if "usability" includes the choice of hardware, choice to use/not use it, as well as, the choice to use/not use a workflow that avoids/gets around the problem.
    1) If viewing and sharing of files is your only concern, then the choice of camera employing MPEG-1 compression is fine. However, the limited support for this format is well documented and of long standing (although I agree that Apple is not particularly "forthcoming" with that fact that is only "playback" supported).
    2) I personally would never use any "still" camera to shoot video clips nor use a video camcorder to shoot "still photos. I.e., you should always use the best tool available for any given job. (E.g., I would not normally us a .22 to go rabbit or dove hunting nor a shotgun to go deer hunting or fishing either.) But, if your MPEG-1 still camera is the only "tool available," then the user must accept the problems that have always accompanied use of partially supported compression formats. (I.e., nothing has changed here.)
    3) Am a bit more concerned about those who did their research, picked a camera that supposedly takes "fully" compatible QT video clips, and now find that iMovie '08 will not accept such clips. (E.g., Kodak cameras which take MPEG4/µ-Law clips and even places them in an MOV file container.) Makes me feel almost as if they were somehow cheated. However, at least these individuals can still use iMovie '06 in this case.
    4) If you have a viable option that corrects the problem or gets around it and you choose not to use it, then that is a matter of personal choice and one should accept the consequences. Since these files were never audio supported in any iMovie version, I don't really understand why this incompatibility issue is suddenly such a big problem.

  • Can't upload TV Shows to new 30g iPod Video

    We just purchased the new iPod Video (30g) and in Windows XP, iTunes 7 all of the songs and music videos uploaded. However, none of the TV Shows uploaded.
    Any ideas?

    The only other thing I can think of is listing the past history:
    1. Had an iPod Mini before and older version of iTunes.
    2. Purchased the TV Shows before buying the new iPod Video
    3. Upgraded to iTunes 7 and then sync'd to new iPod.
    TV Shows missing on iPod
    Could the older iPod be the problem here? Are the shows flagged as not being available to upload to the new iPod?

  • Is it possible to add support for new database type in Data Modeler?

    Hi,
    I see that Data Modeler v.4 supports different versions of Oracle, DB2 and MS SQL. Is it possible to add support for a new database family,
    PostgreSQL for example? I hoped that RDBMS Site editor can do it, but so far I don't see any possibility to add XML files with metadata for a new RDBMS.
    I did it previously for PowerDesigner were it is possible to add and modify definitions for new relational databases.
    Thank you,
    Sergei

    There is discussion option as an out of the box feature. Check this: BI launch pad 4.0: Participate in a discussion about a document

  • Camera Raw support for new Nikon D810

    Hi, could you please advise when we can expect to see camera raw support for the new nikon D810.
    Thanks

    Adriana – I installed the download from the link in the 7/27 post and was able to convert my NEF files to DNG format from my new D810 camera, but could not view/edit the NEF-smalls. When I saw your latest post I used your link to go to that download and noticed that in the description it mentioned that the issues with the D810 NEF-small have been resolved.  I deleted/emptied trash of the 7/27 download and re-installed the one mentioned from your link – although they were both identical in file size and version: 8.6 – hmm?  I tried the converter – but nothing new was converted (I presume because all had already been converted before?).  However, CS6 is still not able to open/edit neither the NEF-small file formats, nor the DNG created from it.  I am thinking maybe I am missing a step, because when I select properties for Camera Raw in CS6, the version is 8.5.0.236 – is that ok (my CS6 version is 13.0.6 – and no other updates appear available)? I only downloaded the DNGConverter_8_6.dmg; installed the .pkg – did I forget a step? Thanks for your help!

Maybe you are looking for

  • Ipod nano crashes windows 7

    Hello Apple community, I am having a problem. My grandpa has an ancient iPod nano 3rd gen 4gb. For some reason, whenever I plug the iPod into his computer, it crashes. Furthermore, with the iPod plugged in his computer it will BSOD again and restart.

  • Cannot change Material Type due to existing DR

    Hi All, I tried changing one material by it reflects an existing Delivery for the said material, I checked the DR and found that it was already received - although its Shipment Cost hasn't been transferred. What should be done with these DRs? =)

  • IPad & iPhone Hotmail Folders Empty

    iPhone & iPad folders empty Sometime recently, perhaps after updating my iPhone and iPad to iOS 6, I noticed mail is missing from many of my HotMail folders on those devices. My account is set up as an Exchange account. I have since deleted it from m

  • ComboBox onEnterFrame Issue

    Hi, I have created an email form in one swf that is called into another swf. In this form there is a comboBox that will populate a text field when something is selected in it. Everything works fine with the comboBox in it's own swf but when it's call

  • Lost contacts after reinstalli​ng - where are they stored on a mac

    My mac book pro crashed on me, so I reinstalled OS 10.5.8. I had all my files backed on an external harddrive, but now my palm desktop(palm 505 - software version 4.2.1) is empty, and my palm handheld is also empty. Where can I find all my contacts o