Videos on video ipod won't work for no reason

they used to play but now the videos/tv shows won't play anymore...why is that? how can i fix? i tried resetting the ipod...only R i haven't tried is the last one as i have over 50gb of stuff and don't want to reload if necessary

what do you mean by firmware 1.1?
as far as i understand, i have the latest updates loaded

Similar Messages

  • Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do

    Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do I fix this?

    Is there a log file in the document folder indicating what the problem was. There are a number of reasons that PDF creation may fail. You can try to print to the Adobe PDF printer to see if there is any indication in that process. The processing is different, but the same problems may show up with both processes.

  • Embedded video HTML won't work for mobile

    Hi,
    I have a video successfully embessed on my desktop site but I can't get it to work for mobile:
    You can see it here on the desktop: MTV ART HOUSE MOSCOW
    I put the same code in for the mobile version, all I did was change the width and height, can someone please help me fix this?
    <video controls="controls" preload="auto" width="1010" height="581" autoplay="autoplay">
      <source src="assets/trailer.mp4" type="video/mp4">
    </video>
    For mobile I changed it to:
    <video controls="controls" preload="auto" width="290" height="171" autoplay="autoplay">
      <source src="assets/trailer.mp4" type="video/mp4">
    </video>

    Hello,
    Please try to enter the code below in phone layout. (I have marked the change in bold)
    <video controls="controls" preload="auto" width="290" height="171" autoplay="autoplay">
      <source src="../assets/trailer.mp4" type="video/mp4">
    </video>
    Muse create phone layout content in a new folder named as "Phone"  as there is no asset folder there we need to correct the directory path in phone layout. I have corrected that in your code.
    Regards
    Vivek

  • Exporting from iMovie to video iPod won't work

    Hello everybody,
    I am just fooling around with the new iPod my wife gave me for my birthday.
    I am trying to get a movie I just finished into my iPod.
    As my program is in German, I hope I'll use the correct English words .
    In "File" there is the button "Send"; when You choose "Quicktime" and "own settings" there'll be a window "export as...", where You choose "film --> iPod (320*240)" and push the button.
    After rendering I dragged the outcome into iTunes, and there from the bibliotheque to the iPod. After that I keep getting the error message (roughly) that my film could not be copied, as the iPod can't play back films like that. There is a link where they promise You further information, but that leads to nowhere.
    The film plays back from the iTunes bibliotheque without problem, it's suffix is *.m4v.
    Has anybody got a solution (or an idea, at least)?
    Greetings from Mannheim, Germany
    Torsten
    G 5   Mac OS X (10.4.3)  

    Are you using this article?
    http://docs.info.apple.com/article.html?artnum=302559
    (Unfortunately it's available only in English, French
    and Japanese.)
    Thanks for the quick reply.
    I didn't know this article, but that's exactly what I did; I just used the greek word "bibliotheque" instead of the latin "library" .
    And the suffix of the file after rendering is *.m4v as in the above mentioned article.
    Still it won't work.
    What can be wrong?
    Greetings
    Torsten

  • Macintosh formatted iPod won't work for Windows

    Hi, I have 2 computers, an Apple iMac and a Windows Vista laptop. My iPod used to be Windows formatted, which worked for both Windows and Mac, when I restored it though, it was restored to Macintosh. I tried transferring some files to my Vista only it says my iPod has to be restored to Windows to work. Is there a way to get around this?
    20" iMac   Mac OS X (10.4.9)   iLife '06, Microsoft Office 2004, and I'm single! (hey, it says other details..)

    You can get around it if you want to purchase some 3rd party software that allows Mac formatted disks to be used on a Windows platform.
    Like this one: MacDrive 7.
    I believe it's Vista compatible.

  • This program won't work for some reason

    I'm having trouble with getting this program to do what I want. It reads in a file and identifies certain parts that follow the rules I've given. The first version below is one that works. It simply prints out the string if it meets the conditions in the if statements. The second one will compile but shows no data. I know it stores the values in the arrays sortstem and sortdg becuase I put the println statement directly after the code for storing them and it worked. However, when I put it where it is now, it will not work. Any suggestions? Also, I get an error after the program runs for both versions: It says exception in thread "main" Java.lang.NullPointerException at tokens.main(tokens.java.69) (this was for the first program).
    import java.io.*;
    import java.util.*;
    class tokens {
         public static void main(String args[]) throws IOException {
              int i;                                                       //int to read in the data from the text file
              int count = -1;
              int countt = -1;
              int countc = 0;                                                  //int to put data into a char array
              FileInputStream fin;                                             //input stream
              char array[] = new char[10000];                                        //array to hold chars from the text file
              String s;                                                  //chars are transfered to this String
              int index;                                                  //index of the names I'm searching for in the string
              String tokens[] = new String[10000];                    
              try {
                   fin = new FileInputStream(args[0]);
              } catch (FileNotFoundException e) {
                   System.out.println("File not Found");
                   return;
              } catch (ArrayIndexOutOfBoundsException e) {
                   System.out.println("Usage: ShowFile File");
                   return;
              do {
                   i = fin.read();
                   if (i != -1) {
                        if (count==array.length-1) {                              //this expands the array if more space is needed
                             char temp[] = new char[array.length+5000];
                             for (int j = 0; j < array.length; j++) temp[j] = array[j];
                             array = temp;
                             array[++count] = (char) i;
                        else
                             array[++count] = (char) i;                         
              } while(i != -1);
              fin.close();
              s = new String(array);
              StringTokenizer st = new StringTokenizer(s);                                                            
              while (st.hasMoreTokens()) {
                   if (countt==tokens.length-1) {                              //this expands the array if more space is needed
                             String temp1[] = new String[tokens.length+5000];
                             for (int j = 0; j < tokens.length; j++) temp1[j] = tokens[j];
                             tokens = temp1;
                             tokens[++countt] = st.nextToken();
                        else
                             tokens[++countt] = st.nextToken();     
              if (tokens[4].startsWith("stem")) {
                   if (tokens[4].equals(tokens[201])) {      //Skip this one
                   else
                        if ((tokens[9].equals("32")) && (tokens[15].equals("31"))
                        && (tokens[21].equals("30")) && (tokens[27].equals("29"))
                        && (tokens[33].equals("28")) && (tokens[39].equals("27"))) {
                             System.out.println(tokens[4]);
              for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Skip this one
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  System.out.println(tokens[k]);
    }This one below compiles but doesn't print to the screen.
    import java.io.*;
    import java.util.*;
    class tokenstest {
         public static void main(String args[]) throws IOException {
              int i;                                                       //int to read in the data from the text file
              int count = -1;
              int countt = -1;
              int countc = 0;                                                  //int to put data into a char array
              FileInputStream fin;                                             //input stream
              char array[] = new char[1000000];                                        //array to hold chars from the text file
              String s;                                                  //chars are transfered to this String
              int index;                                                  //index of the names I'm searching for in the string
              String tokens[] = new String[200000];
              String sortdg[] = new String[500];     
              String sortstem[] = new String[500];                         
              try {
                   fin = new FileInputStream(args[0]);
              } catch (FileNotFoundException e) {
                   System.out.println("File not Found");
                   return;
              } catch (ArrayIndexOutOfBoundsException e) {
                   System.out.println("Usage: ShowFile File");
                   return;
              do {
                   i = fin.read();
                   if (i != -1) {
                        if (count==array.length-1) {                              //this expands the array if more space is needed
                             char temp[] = new char[array.length+5000];
                             for (int j = 0; j < array.length; j++) temp[j] = array[j];
                             array = temp;
                             array[++count] = (char) i;
                        else
                             array[++count] = (char) i;                         
              } while(i != -1);
              fin.close();
              s = new String(array);
              StringTokenizer st = new StringTokenizer(s);                                                            
              while (st.hasMoreTokens()) {
                   if (countt==tokens.length-1) {                              //this expands the array if more space is needed
                             String temp1[] = new String[tokens.length+5000];
                             for (int j = 0; j < tokens.length; j++) temp1[j] = tokens[j];
                             tokens = temp1;
                             tokens[++countt] = st.nextToken();
                        else
                             tokens[++countt] = st.nextToken();     
              if (tokens[4].startsWith("stem")) {
                   if (tokens[4].equals(tokens[201])) {      //Skip this one
                   else
                        if ((tokens[9].equals("32")) && (tokens[15].equals("31"))
                        && (tokens[21].equals("30")) && (tokens[27].equals("29"))
                        && (tokens[33].equals("28")) && (tokens[39].equals("27"))) {
                             sortstem[countc] = tokens[4];
                             sortdg[countc] = tokens[3];
                             countc++;
              for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Do nothing
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  sortstem[countc] = tokens[k];
                                  sortdg[countc] = tokens[k-1];
                                  countc++;
              for (int z = 0; z < countc; z++) {
                   System.out.println(sortstem[z]);
              for (int z = 0; z < countc; z++) {
                   for (int y = z+1; y < countc; y++) {
                        if (sortdg[z].compareTo(sortdg[z]) > 0) {
                             String tdg = sortdg[z];
                             String tstem = sortstem[z];
                             sortdg[z] = sortdg[y];
                             sortstem[z] = sortstem[y];
                             sortdg[y] = tdg;
                             sortstem[y] = tstem;
              for (int j = 0; j < 20; j++) {
                   System.out.println(sortstem[j] + ": dG = " + sortdg[j]);
              System.out.println("Test");
    }

    I'm still having trouble with the println in this program. For some reason, in this section of the code, if I put System.out.println(sortstem[0]); inside the for loop, it works fine. But if I try to do it ouside of this loop, it will not work. The only thing I can think of is that the variable is only available inside the loop but I just can't figure it out. Can anyone enlighten me?
    for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Do nothing
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  sortstem[countc] = tokens[k];
                                  sortdg[countc] = tokens[k-1];
                                  countc++;
    [code/]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

  • TS1398 my password for my wiifi on my ipod touch isnt working for some reason, i tried all my passwords and nothing is working, i never had a problem before please help. is there a way to somehow recover it or change the password.

    i have an ipod touch and my password for wiifi isnt working? i never had a problem with this before is there a way u can recover or change it? also my music is stuck in a folder on my computer and will not let me sync or add it back to my ipod. am i going to have to download all my music cds back on it? also purchased some music from iunes and its not showing up on my ipod either.

    For music problem:
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
      - Restore to factory settings/new iOS device.
    For wifi
    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Ipod Touch Stopped Working For No Reason!!

    Hi, First time post.
    Basically, until about a week ago my ipod was working perfectly.
    It ran out of battery so charged up over night as usual.
    When i tried to turn it on the next day nothing happened at all. I tried to plug it into charge in the wall and on my computer but nothing happened!
    My computer does not even recognise i have connected my ipod now.
    I have tried using a new cable with no success. I have also tried all the reset combinations with no success either.
    When i plug my ipod in to either the wall or the computer it heats up quite a bit but nothing happens.
    Please Help!!
    Thanks

    Hi Bairn2009,
    Try resetting the iPod touch by holding the Home and Sleep/Wake buttons until you see the Apple logo as described here: http://docs.info.apple.com/article.html?artnum=305743
    If the iPod starts up like normal and is still not recognized by iTunes, try the tips in this article: http://support.apple.com/kb/HT1852
    If the iPod does not restart normally, it may need hardware repair.
    This article: http://www.apple.com/uk/support/ipod/service/faq/#repair2 provides more information about repair options.
    -Jason

  • My classic video ipod won't switch back to regular video mode after using it on an elliptical. The port still allows me to charge and works on the elliptical and treadmill but it will no longer change modes to allow me to watch my shows on the ipod screen

    My classic video ipod won't switch back to regular video mode after using it on an elliptical. The port still allows me to charge and works on the elliptical and treadmill but it will no longer change modes to allow me to watch my shows on the ipod screen

    From the iPod's Main Menu choose Videos -> Settings and make sure TV Out is set to Off.
    Otherwise, try a hard reset as well.  To do this, press and hold both the Select (Center) and Menu buttons together long enough for the Apple logo to appear.
    B-rock

  • HT5278 i did this update and now the volume on my phone doesn't appear when i push the buttons on the side of the phone. occasionally i see them, but my speakers won't work for playing videos or music either. it does ring when i receive a call though! ne1

    i did the ios5.1.1 update and now the volume on my phone doesn't appear when i push the buttons on the side of the phone. occasionally i see them, but my speakers won't work for playing videos or music either. it does ring when i receive a call though, and for my alarm. ne1 else had these problems?

    I have had this happen to me on 3GS, 4 and 4s.   Usually the solution is one of the following:
    1-  If  your volume indicator says  headphones even though they are not plugged in, then:
    Stick your headphones into the headphone jack and then remove quickly.
    2. If that does not work Power your phone off. Then when restarting Reset the phone by pressing the home button and the power button at the same time until the apple logo appears.
    3. Make sure you have not chosen to send audio to an Airplay device such as Apple Tv.
    Hope one of these works for you

  • I have an older Power Mac G5 Quad, and my video card just went out. I am trying to find a video card that will work for my Power Mac. I have duel screens but I can't seem to find the appropriate video card

    I have an older Power Mac G5 Quad, and my video card just went out. I am trying to find a video card that will work for my Power Mac. I have duel screens but I can't seem to find the appropriate video card. The serial number on my computer is: RM620603R6W. Apple won't help me because the computer is older than suggested. Please give me the exact video card that will work best for my computer.

    Hi Mike, make sure the card has Mac ROM, or is a PC card with Mac ROMs flashed to it...
    G5 PCIe options are listed here:
    http://www.jcsenterprises.com/Japamacs_Page/Blog/71BBF3EF-9713-4C53-8B80-26771F8 A4087.html

  • TS2771 I have the iPod Touch 2G and for some reason half of my apps won't work.

    I have the iPod Touch 2G and for some reason half of my apps won't work.

    - Reset the iPod, nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Purchase/install any new app
    - The remaining items of:
    iOS: Troubleshooting applications purchased from the App Store
    - Last, restore the iPod

  • IPod won't work when iTrip is connect to car charger

    When I connect my itrip to the car cigarette lighter the iPod won't work, i.e. it will plsay the current tune but the controls don't respond and it stops playing when the current tune ends. It works ok when I disconnect the power.
    Ipod model M9244B version 2.3
    Any ideas?

    Try the following to rule out a software problem:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem that indicates a hadware problem, likely a bad battery. Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Front face camera won't work for pictures. But it works perfectly on FaceTime, any way of fixing this?

    Front face camera won't work for pictures. But it works perfectly on FaceTime, any way of fixing this?
    When I try and change the camera to face front it acts like it's going to change then kind of freezes and won't let me change back to the back camera for several minutes.
    Any ways of fixing this?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                       

  • TS1538 Hi, I have the problem which iTunes cannot detect my iPhone 4s. I tried the steps you have provided in your troubleshooting, but it won't work for me because the Apple Mobile Devilce is perfectly installed on my windows.

    Hi, I have the problem which iTunes cannot detect my iPhone 4s. I tried the steps you have provided in your troubleshooting, but it won't work for me because the Apple Mobile Devilce is perfectly installed on my windows. However, the driver "Microsoft teredo Tunneling adapter" has a yellow exclamation mark, which i believe means it's not installed correctly or something is wrong with it. This driver is under the Network Adapters (Please see picture below).
    This is what happens when I connect my iPhone 4s to my laptop (Windows 7 Starter 32-bit)
    1. The phone charges it's battery
    2. I can open it in My Computer and import/export media files.
    In iTunes
    3. It start to sync until step 3 then stops.
    4. The iPhone option with an arrow appears beside the iTunes Store, but when the arrow is clicked it disappears.
    I hope you can provide me a solution for this problem.
    Thanks,
    Ralph

    Hi ralphagir,
    Welcome to the Apple Support Communities!
    For your iTunes issue with it not recognizing your iPhone, I would go ahead and suggest deleting iTunes and all of its components from your Windows computer and installing fresh.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Remove iTunes and related components from the Control Panel
    Use the Control Panel to uninstall iTunes and related software components in the following order and then restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order, or only uninstalling some of these components may have unintended affects.
    As far as the arrow button that you click and the iPhone disappears, it sounds like you may be clicking on the eject button. Please take a look at the following article for information on the eject button in iTunes.
    Safely disconnect iPod
    http://support.apple.com/kb/HT1853
    Have a great day,
    Joe

Maybe you are looking for