I am contemplating replacing my old Ipod with a 8gb touch which supposedly holds up to 1760 songs. In my ITunes library the average size of a 12 song album is 300mb which means I can get 27 albums x 12 songs is 324 songs. Where am I going wrong here?

I am contemplating replacing my old Ipod with a 8gb touch which supposedly holds up to 1760 songs. In my ITunes library the average size of a 12 song album is 300mb which means I can get 27 albums x 12 songs is 324 songs. Where am I going wrong here?

There is about 6.9  GBs of free space on an 8 GB Touch for data storage. That translates to roughly 23 of your average albums.
Holds up to 1760 songs is based on the size of an average track which is about 3 to 4 MBs, whereas your albums have tracks averaging more like 25 MBs per track. I sort of doubt your average album holds what would be about 5 hours.

Similar Messages

  • IPhone 4 - tried updating with new software and now it's asking me to plug it to iTunes. The problem is that my laptop is dead. Is there anything I can do now? Thank you for help!

    iPhone 4 - tried updating with new software and now it's asking me to plug it to iTunes. The problem is that my laptop is dead. Is there anything I can do now?
    I Don't know if I can turn it of or do I just leave it and take it to service?
    I'd appreciate some advice!

    Same thing happened here ~ tech guy at a local authorized Apple repair store said it had something to do with improper backup from which the restore would be made. Still have a phone that asks to be connected to Itunes but won't do anything else . . . frustrated.

  • HT4972 i would like to replace my old ipod with this new 4th gen, for my entire library, how to?

    i just bought a  4th generation ipod touch, to replace my 1st generation ipod touch and would like to register it so i can have access
    to my entire library , can anybody tell me how to do this?

    Make one final sync of the old iPod to your computer. The first step of the sync is a backup.
    Then connect the iPod to the computer and restore it from the backup for the old iPod. You will have to reenter keychain items like passwords since they are only restored to the same device.
    To restore see:
    iTunes: Backing up, updating, and restoring iOS software
    The restore topic of:
    iOS: How to back up

  • Can you have a look at my code please, where am i going wrong?

    Compiles fine but i get a nullPointerException
    in the setLayerOne() method and the setInputs() method
    the error seems to point to the Neuron[][] network
    but i thought it should be ok as i initilised the pointer as static
    the Neuron class is compiled and contains both these methods.
    also, is this bad design to make all my varibles static like this
    thanks for the help
    Tim
    import java.io.*;
    public class Guesser {
      static char[] user = new char[100];
      static int guess_no = 1;
      static int noOfLayers;
      static BufferedReader br = new BufferedReader( new InputStreamReader(System.in));
      static Neuron[][] network;
      static int[] layers;
      public static void main(String args[])
        throws IOException
        guesserNetwork();
      ///now for the guessing bit
      int guess_no = 0;
      char guess;
      //char dummy;
      //BufferedReader br = new BufferedReader( new InputStreamReader(System.in));
      char[] user = new char[100];
      while (guess_no<10) {
        System.out.println("Please think of Heads (H) or Tails (T) then press enter.");
        if (guess_no == 1)
          guess = 'H';
        else if ( user[guess_no] == 'H' )
          guess = 'T';
        else
          guess = 'H';
        // now we tell the user what our guess was,
        char dummy;
        dummy = (char) br.read(); // wait for the return key pressed
        System.out.println(guess);
        // Find out what the user was thinking of
        // and force the user to H or T
        user[guess_no] = (char) br.read();
        if (user[guess_no] == 'h')
        {user[guess_no] = 'H';}  //this does not work i dont know why
        else if (user[guess_no] == 't')
        {user[guess_no] = 'T';}
        dummy = (char) br.read(); // clear the stream for the return key press
        while ( user[guess_no] != 'H' && user[guess_no] != 'T')
          System.out.println("You must enter H or T");
          user[guess_no] = (char) br.read();
        setLayerOne();  //////HERES WHERE I GET NULLPOINTER EXCEPTION
        guess_no++;
      while (guess_no<100){
        //call update method
        //print output of last node
        network[0][guess_no].inputGuess(guess_no);
        guess_no++;
      static void setLayerOne() ////I GET NULLPOINTER EXCEPTION
       network[0][guess_no].inputGuess(guess_no); // sets the first layer neurons
      static void setInputs ()
         for (int i = 1; i < noOfLayers; i++){
           for(int j=0; j < layers; j++){
    network[i][j].updateInput(i, network[i-1], network[i-1].length); //sets the other neurons
    static void guesserNetwork()
    int noOfNeurons[] = {10,1,1};
    int nodes = 0;
    noOfLayers = 3;
    int[] layers = new int[noOfLayers];
    for (int i =0; i < noOfLayers; i++)
    layers[i] = noOfNeurons[i];
    System.out.println("layer " + (i + 1) + " has " + noOfNeurons[i] + " neurons");
    nodes += noOfNeurons[i];
    System.out.println("total no of nodes = " + nodes);
    System.out.println("building network...");
    //make (noOfLayers)arrays of arrays
    Neuron[][] network = new Neuron[noOfLayers][];
    for (int i=0; i < noOfLayers; i++)
    //for each layer make the desired number of rows(of neurons)
    int rows = layers[i];
    network[i] = new Neuron[rows];
    //instinate neuron objects one by one
    for (int j=0; j < layers[i]; j++)
    if (i==0)
    network[i][j] = new Neuron(noOfLayers, i, j, rows, 1, user[j]);
    else
    boolean isFirstLayer = false;
    network[i][j] = new Neuron(noOfLayers, i, j, rows, layers[i-1], network[i-1]);

    Main calls guesserNetwork() which initilises the array:-
    Neuron[][] network = new Neuron[noOfLayers][];
         for (int i=0; i < noOfLayers; i++)
           //for each layer make the desired number of rows(of neurons)
           int rows = layers;
    network[i] = new Neuron[rows];
    //instinate neuron objects one by one
    for (int j=0; j < layers[i]; j++)
    if (i==0)
    network[i][j] = new Neuron(noOfLayers, i, j, rows, 1, user[j]);
    else
    boolean isFirstLayer = false;
    network[i][j] = new Neuron(noOfLayers, i, j, rows, layers[i-1], network[i-1]);
    later main calls setLayerOne():-
    static void setLayerOne()
       network[0][guess_no].inputGuess(guess_no); // sets the first layer neurons
      }and gives this error:-
    NullPointerException:
    at Guesser.setLayerOne(Guesser.java:77)
    at Guesser.main(Guesser.java:62)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    I nave set network[][] to static so that it can be acessed from the main method and the other methods in this class.
    thanks again

  • Replace an old ipod on itunes with a new ipod

    I want to buy a new ipod. But I already have hooked up 5 different ipods to my computer which I thought was the limit. Is there a way for me to replace my old ipod with a new one?

    The 5 limit you are referring to is a limit of 5 authorized computers to play purchases. You can use as many iPods as you want.

  • Is there any shop in texas ,austin where we can replace an old ipod touch 3G and get a new ipod touch 4G ??

    Is there any shop in texas ,austin where we can replace an old ipod touch 3G and get a new ipod touch 4G ??
    pls help mee

    Sorry but I am pretty sure there isn't a shop which offers such a service.
    Apple stores offer a 14 day remorse period where you can return a purchase for a full refund without having to give a reason however this has probably expired - unless you bought from a different store with a similar system which you still happen to be within the time limit for.
    Your best bet would be to sell your iPod 3G and put the money towards a new one. If you are having trouble selling it an Apple store will take it and give you 10% off a new iPod.

  • My big old IPod is stuff with an error stating Disk mode at top with a big check  mark in middle of screen and an OK to disconnect at the bottom. Please help I have a lot of reggae music I can't lose.

    My big old IPod is stuff with an error stating Disk mode at top with a big check  mark in middle of screen and an OK to disconnect at the bottom. Please help I have a lot of reggae music I can't lose.

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

  • My iPod Touch power button is stuck and will not pop back up. My iPod Touch Repairs and Service Coverage is still active, Does that mean I can get a new iPod Touch?

    My iPod Touch power button is stuck and will not pop back up. My iPod Touch Repairs and Service Coverage is still active, Does that mean I can get a new iPod Touch?

    Apple will most likely exchange it. The one you receive will be refurbished.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Had an old ipod with all my songs on some years ago now says i cannot synch with my new computer and new apple account do not want to lose all my songs how do i get them on my new comp pl

    Hi had old ipod with old large library on have lost my old itunes account so opened a new one but i cannot get my library onto my new comp help!! pl

    The music you purchased with the old iTunes account is tied to that account.  You need to obtain the ID and password for that account.  The following provides instructions.
    Frequently Asked Questions About Apple ID
    Once you get the accountinoformation you can transfer the the iTunes purchased stuff to the new computer by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    If you are the USA and have the latest iTunes you shuld be able to redownload them with these instructions.  Again, you need the ID information.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Hi, I have an iTunes account on my laptop set up to work with my old iPod. I now have an iPad and new iPod but set up under a different account- can I put all the songs from my iTunes onto the new devices. Thanks.

    Hi, I have an iTunes account on my laptop set up to work with my old iPod. I now have an iPad and new iPod but set up under a different account- can I put all the songs from my iTunes onto the new devices. Thanks.

    Yes
    Put all the music on one computer, make sure it is authorized for all accounts, sync.

  • Thinking about replacing my sons old ipod with the new fifth genertation.can i just sync the new one with the computer so he doesn't lose what he currently has stored on his old one

    how do i transfer whats on the old ipod with the new one, do i just sync

    It is as little more complicated than that. See:
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • My I-pod screen is cracked and my account says 'Repairs and Service Coverage: Active' does that mean I can get it fixed for free or replaced?

    My I-pod screen is cracked and my account says 'Repairs and Service Coverage: Active' does that mean I can get it fixed for free or replaced? the ipod is very usefull to me as it keeps my three younger brothers entertained for a few minutes or hours and yes I understand that the Ipod is not indestructible but when in my pocket with two euro coins, it should not break when I sit down.

    That kind of damage is accidental and is not covered by warranty.  You can get the unit replaced for a flat fee:
    Replace broken screen on i-device - https://discussions.apple.com/thread/3869709 - lllaass post.  Similar one at https://discussions.apple.com/thread/3925666
    Apple - Support - iPod - Repair pricing - http://www.apple.com/support/ipod/service/prices/

  • HT1386 need to sync my old ipod with my new computer, How do I keep my old stuff on the new computer?

    How can I transfer stuff from my old Ipod to my new computer?

    Still did not work. I did everything listed. The program did not work as needed because it is only the free version and I should not have to pay for 3rd party software for something like this. Also, that article is outdated because windows 7 does not come with contacts software, but I managed to get it to work with a helpful post on another forum. Itunes still asked me to replace current iPod's data, I went ahead and clicked yes. I'll just go ahead and redownload all of my music and whatnot. Thanks anyway.

  • Is it possible to replace my old macbook with an ipad2? I need to be able to sync it with my new iphone and reset it if necessary.

    Is it possible to replace my old macbook with an ipad2? I need to be able to sync and reset the my new iphone with the ipad2 . Is this possible? The operating system of my old macbook is Mac OS X 10.4.11, which is incompatible with my iphone.

    An iPad is just a very big iPhone without the ability to voice call people. Just like the iPhone you need to connect it to a computer with iTunes to activate it, sync it, and everything else.
    There is no way to directly plug an iPhone into a iPad so you cannot sync to it.
    The iPhone requires iTunes to sync with. The iTunes application on the iPad is actually just the iTunes Store and does not contain any drivers to allow another iDevice to connect to it.

  • I want to register my iPod with iTunes but the registration firm keeps asking for a postcode but there is no field to enter it, although there is an arrow showing where the error is but still no field for entry. Any suggestions how to get past this ?

    I want to register my iPod with iTunes but the registration form keeps asking for a postcode but there is no field to enter it, although there is an arrow showing where the error is but still no field for entry. Any suggestions how to get past this ?

    I can not get to iPhone screen, so no way to get to Settings. That is the problem. When I connect phone to iTunes I get screen asking to insert SIN card. On the phone I'm getting Cinfigure screen asking Launguage , Country or Region, Wi-Fi, ( I can connect to my home wi-fi), and last screen "Activating your iPhone". After two minutes of waiting IM getting message: Your iPhone could not be activated because the activation server in temporary unavailable. try connecting to iTunes or try later or contat apple.com/support.
    Like I mention, I went to Bell as well Rogers store and tried to insert active SIM card with no results.
    Yes, my friend unlock the phone to use with Rogers but I don't know where

Maybe you are looking for