Putting a playlist from one itunes onto another.

There are songs on my dad's itunes that i would like to put onto my ipod. When i try to add just one playlist with the songs i want, it takes off the songs that are already on my ipod from my itunes.

That's because iPods are designed to sync with only one iTunes library at a time. When you sync an iPod with a new/different iTunes library, the contents will be erased and replaced with what is configured to sync to it from the new/different iTunes library.
If you want to add content to the iPod from multiple PCs, see this support document.
Using iPhone, iPad, or iPod with multiple computers
B-rock

Similar Messages

  • How can I transfer my iTunes library and playlists from one computer to another?

    How can I transfer my iTunes library and playlists from one computer to another?

    Copy the iTunes folder (Mac: Home\Music or PC: My Music) to the same location on the new computer. If an iTunes folder already exists on the new computer (it will on a Mac) replace it with one you copied.

  • Can I share itunes playlists from one computer to another?

    Can I share itunes playlists from one computer to another?

    My computer cannot run  Sharing so I don't have firsthand experience.  My reading of it is:
    1) Music sharing lets you stream (not transfer) select items, including specific playlists, between local computers on the same network.
    2) Home Sharing lets you stream or transfer media files between computers on the same network.  I don't know if this is as spacific as particular playlists, or you you have to make the playlist once the desired content is transferred.  It says media so doesn't look like it restricts transfer to specific playlists, it just makes your whole media collection accessible on another authorized computer.
    You can export a playlist file from iTunes, but this is a text file listing of content, not a complete playable package.

  • HT1329 How do I transfer playlists from one ipod to another?

    How do I transfer playlists from one ipod to another?

    It needs to go through iTunes.  But there is no way to transfer songs from iPod to iTunes library (except for music you purchased from iTunes Store).  However, there are third-party methods and utilities that can transfer from iPod to computer.  If you do a Google search on "ipod transfer," you should get some links.
    Once the song files are on your computer, add them to your iTunes library.  You can then sync your iPhone to the iTunes library.
    Alternately, if you sign up for the iTunes Match service, your iTunes music library on your computer will become available from iCloud.  You can set your new iPhone (assuming you bought a "new" iPhone) to sync from iCloud, instead of from your computer's iTunes.  All of your music will be available wirelessly, wherever you have an Internet connection. 

  • Move playlist from one iPod to another?

    Is it possible to transfer a playlist from one iPod to another? I have an iPod on which I've developed some playlists for classes (I teach music) and I just got a new iPod, and I would like to transfer that playlist on the old iPod to the new iPod.
    Let me be clear: I own all of the music on the playlist, and it is all still in my iTunes library; I just want to move the playlist I've developed over the last few years on my old iPod to my new one as a whole, rather than piece by piece and one file at a time.
    Is this possible?

    No, unfortunately -- it's only on my old iPod. I just created playlists on the iPod and added things to that. There's about 80-100 things in each playlist.

  • HT1349 How do I copy my playlists from one computer to another?

    How do I copy my playlists from one computer to another? Both Acer.

    The playlists are contained in the iTunesLIbrary.itl file.
    If you are moving your library from one computer to another, simply copy the ENTIRE iTunes folder from the old computer to the new computer.

  • How to put a string from one Frame to another Frame?

    Dear all,
    How can I put a String from one Frame to another Frame?
    When the application started, the Frame 'WindowX' will be displayed. After you press the 'openButton', a whole new Frame (inputFrame) will be shown. In this Frame )(inputFrame) you can write a String in a TextField. After pressing the okButton, this String will be sent to the first Frame 'WindowX'.
    But does anyone know how to realize the sending part?
    I've tested this code on Win98 SE and JDK1.2.2.
    Hope someone can help me. Thanks in advance.
    import java.awt.*;
    import java.awt.event.*;
    public class WindowX extends Frame implements ActionListener, WindowListener
         private Button openButton;
         private TextField resultField;
         public static void main(String [] args)
              WindowX wx = new WindowX();
              wx.setSize(300,100);
              wx.setVisible(true);
         public WindowX()
              setLayout(new FlowLayout());
              openButton=new Button("open");
              add(openButton);
              openButton.addActionListener(this);
              resultField=new TextField(10);
              add(resultField);
              resultField.addActionListener(this);
              addWindowListener(this);     
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==openButton)
                   inputFrame ip=new inputFrame();
                   ip.setSize(200,80);
                   ip.show();
         public void place(String theString) //this doesn't work
              resultField.setText(theString);
         public void windowClosing(WindowEvent event)
              System.exit(0);
         public void windowIconi......
    class inputFrame extends Frame implements ActionListener,WindowListener
         String theString = "";
         Button okButton;
         TextField inputField;
         WindowX myWX=new WindowX();   //??
         public inputFrame()
              setLayout(new FlowLayout());
              inputField=new TextField(10);
              add(inputField);
              inputField.addActionListener(this);
              okButton=new Button("OK");
              add(okButton);
              okButton.addActionListener(this);     
              addWindowListener(this);     
         public static void main(String[] args)
              Frame f = new Frame();
              f.show();
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==okButton)
                   theString=inputField.getText();
                   myWX.place(theString);   //??
                   dispose();
        public void windowClosing(WindowEvent e) {
        dispose();
        public void windowIconi......
    }

    Thanks for your reply!
    But I got an other problem:
    I can't refer to the object (wx) made from the main Frame 'WindowX', because it's initialized in 'public static void main(String [] args)'...
    Hope you can help me again... Thanks!
    import java.awt.*;
    import java.awt.event.*;
    public class WindowX extends Frame implements ActionListener, WindowListener
         private Button openButton;
         private TextField resultField;
         public static void main(String [] args)
              WindowX wx = new WindowX();   //!!
              wx.setSize(300,100);
              wx.setVisible(true);
         public WindowX()
              setLayout(new FlowLayout());
              openButton=new Button("open");
              add(openButton);
              openButton.addActionListener(this);
              resultField=new TextField(10);
              add(resultField);
              resultField.addActionListener(this);
              addWindowListener(this);     
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==openButton)
                   inputFrame ip=new inputFrame(wx);
                   ip.setSize(200,80);
                   ip.show();
         public void place(String theString)
              resultField.setText(theString);
         public void windowClosing(WindowEvent event)
              System.exit(0);
         public void windowIconi....
    class inputFrame extends Frame implements ActionListener,WindowListener
         String theString = "";
         Button okButton;
         TextField inputField;
         WindowX parent;
         public inputFrame(WindowX parent)
              setLayout(new FlowLayout());
              this.parent=parent;
              inputField=new TextField(10);
              add(inputField);
              inputField.addActionListener(this);
              okButton=new Button("OK");
              add(okButton);
              okButton.addActionListener(this);     
              addWindowListener(this);     
         public static void main(String[] args)
              Frame f = new Frame();
              f.show();
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==okButton)
                   theString=inputField.getText();
                   parent.place(theString);
                   dispose();
        public void windowClosing(WindowEvent e) {
        dispose();
        public void windowIconi..........
    }          

  • How do i transfer my itunes playlist from one computer to another

    how do i transfer my itunesw playlist from one computer to another

    Jolly Giant hasn't posted in around a year...
    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have failed to move contacts and calendar items across you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • Transfering songs from one computer onto another...

    My Brother has an ipod mini (as I used to) but our computer is so old that it can only hold one ipod (Therefore, I returned my ipod so he could use his). However, several months after I returned mine we bought two new computers, but still kept the old computer. After this I bought an ipod nano and have been using it on my new computer. Although we are glad that we can both use our ipods efficiently (on seperate computers) he is afraid that the old computer might crash soon. I tried putting his ipod into disk mode and tried transferring it to his [new] computer over a month ago, but it was too confusing and did not work correctly. Is there any possible way to transfer it without the directions being so confusing? Or could someone kind of "Translate" the directions for us?
    <center>Thank you so much,
    <center>pnkpolo92

    How to Copy and Move (Clone) your Music Files from One Computer to Another – or Archive Prior to a PC Re-Image or Reformat
    This is the conceptual framework with related and important links. Apply and adapt it to your specific situation and equipment resources.
    The safest, quickest, and most optimal method to move your Library to a new computer is to actually clone the entire ‘iTunes’ folder (directory) structure, rather than just copying just the song files. By copying the entire ‘iTunes’ folder and all sub-folders, you capture not only the music files, but the all-important ‘iTunes Library.itl’ database file (usually located in the ‘iTunes’ folder), which contains all the data about your songs (Playlists, Ratings, Play Counts, Last Played, Date Added, etc). See: What are the iTunes Library files?
    Install iTunes on the new computer. Then go back to your old computer and move (copy) the "iTunes" folder which usually resides inside your "…\My Documents\My Music" folder from the old computer to the exact same place (both Drive Letter and complete Path) on the new computer. When you open iTunes on the new computer it will look and behave exactly the same way it did on the old, Play Counts, Ratings, Comments and all!
    NOTE: It is usually safer moving files between computers with the same version of iTunes!!
    iTunes Files to Copy and Move to your New PC
    1) All music files in their current folder structure (usually located in and under the ‘iTunes Music’ folder)
    2) The Library database file: ‘iTunes Library.itl’ located in the ‘iTunes’ folder
    3) The Library XML file: ‘iTunes Music Library.xml’ located in the ‘iTunes’ folder
    4) Any XML playlist files you created for Playlist retention
    5) The two iTunes.pref files (optional)
    -- C:\Documents and Settings\<your username>\Application Data\Apple Computer\iTunes\iTunes.pref
    -- C:\Documents and Settings\<your username>\Local Settings\Application Data\Apple Computer Inc\iTunes.pref
    6) The XML file of Ratings, Play Counts and Last Played attributes saved from the main Library and created by Otto’s SaveRatings script (also optional, but recommended):
    “Download this: http://ottodestruct.com/itunes/SaveRatings.zip . It's a program, just run it like any other program. Run it on the machine where you're copying the info from BEFORE you move the files to the new machine. Click the "Save Ratings" button and it'll create a ratings.xml file. Now when you move the files, move the program and this file as well. Then after you make your new iTunes library, run it again and click the "Restore Ratings" button. Voila, all your information is back in the Library. Well, most of it anyway, it's not perfect. It'll tell you what songs it couldn't figure out though, and there's usually not very many.”
    Here's a list of methods to copy and move your music files from one computer to another:
    1) Use an External Hard Drive (ExHD) to move the complete files and Folder structures from one computer to another (my preferred option). You can clone’ the entire ‘iTunes’ folder structure in one very easy step. Also great to have available for complete backups of your Library. External hard drives now run less than $100 for 200-250GBs of storage. See This Link
    2) Directly connect the two computers....
    - 2a) Connect them through a Router &/or Network
    - 2b) Directly connect using an Ethernet cable: Straight for using at least one Mac; or Crossover for PC/PC Instructions here.
    - 2c) Connect them via a USB-to-USB Network Bridge. Example here. There are various types out there (use Google).
    ....Then copy the files from one computer to the other.
    3) Use the iPod as a transfer device, as this extensive Apple link explains. It will be a bit easier if your iPod has a larger capacity than your music collection, otherwise you will need to perform multiple copy/move transfers. This well written process also works fine while using any other data transfer medium (ExHD, Flash Drive, DVD, CD, Zipp, Jazz, etc.).
    4) Burn several DVDs (at 4.7GBs each) with your music data files and folder structure, and load them onto the new computer. Re-writable DVDs are more cost effective (if your DVD drive can manage these types).
    5) Burn 6x more on CDs (at 700MB each) than in #4 above and load the files and folders on the new computer. Re-writable CDs are more cost effective (if your CD drive can manage these types).
    6) Use a larger USB Flash drive (1GB - 4GB) to move the files and folders. Best if the flash drive is larger than your Library, otherwise you will need multiple copy/move transfers.
    These are links to various additional instructions on performing the transfer (read them all, but some listed steps may not be required depending on your specific situation):
    Switch from PC to Mac Using the iPod
    hudgie: Migrating iTunes for Windows to a new PC
    How to copy music between authorized computers
    Also, remember to Deauthorize your PC before reformatting or disposing of it. Or, if you no longer will use it for iTMS use.

  • How to copy attributes (as in which playlists) from one song to another

    Hi,
    Does anyone know how to copy the characteristics of a song--as in which playlists it appears in--from one song to another, so that the new song then appears on all those same playlists also? Or, if not, maybe you have some other idea for me:
    I'm working with a Mac. I have several hundred playlists with ~100 songs each, and about 3,500 songs in my iTunes. Most of these songs are currently AACs. I've realized I have a problem: If I want to burn disks with MP3-format songs, I will need to convert the AAC to MP3s to burn them. If I don't want to have thousands of duplicate songs, I will need to trash the AAC versions of those songs from my library. If I do that, they will disappear from the playlists they are currently in (one song might be in 20 different lists). If I had to manually take each MP3 version created, look at which playlists the original AAC version is in, drag the MP3 version to each playlist, and delete the AAC version, it would take a Looooong time. Does anyone know of any shortcuts? For example, is there some way to copy the information about which playlists a given song is in and then paste that info onto the new version so it now appears also in these playlists? Or some other idea? Thanks very much!
    Molly

    Never heard of any way of doing that. However, you may want to check out Doug's Scripts. There might be something there to help.
    http://dougscripts.com/itunes/index.php
    Best of luck.

  • How to transfer pictures from one itunes to another?

    I have most of my iPod stuff on my laptop, but my pictures are on my mac. I just got a new iPod, and I did what I normally do to get my pictures onto it- go into itunes, go into my pictures, and apply it. This time, however, not all of the pictures got transferred. I think it would be easier to have all my pictures on my laptop, but I do not know how to transfer them from one computer to another. How can I do this?

    If they are synced photos just copy the folders with the photos to the new computer. Synced photos are not associated with iTunes or the iTunes library.

  • How to move songs in one playlist from one mac to another?

    I am running the current version of  iTunes on my MacPro and my MBAir, both of which are authorized computers in my iTunes account.  I would like to copy the tunes in one playlist on my MacPro to my MBA, so that I can take them on the road.  Some of the songs are purchased from the iTunes store, and some have been ripped in from CDs I own.  I have found numerous links explaining how to move an entire iTunes library to a new computer.  But, I simply want to copy a few files from one Mac to another so that I can play them on either machine.  How do I do this?  Thanks!

    There are no shortcuts with the way your iTunes libraries are set up. You'll just have to go to each individual song, use "Show in Finder" to locate the actual file and copy and paste them to your other computer's iTunes.
    What I suggest for someone who has multiple computers is to designate one computer to store all of your iTunes content and use the Home Sharing feature to stream to the other computer. iTunes was not designed for an individual that has multiple computers.

  • How can i transfer songs from one itunes to another?

    I have a new computer and want to transfer all of my songs from one computer to another.  I have home sharing turned on but can't figure out how to save the songs to the new computer.

    I have home sharing turned on but can't figure out how to save the songs to the new computer.
    First, make sure you've got the home share set up on both computers, as per the following document. If material on the original PC was bought from the iTunes Store, I'd use the AppleID you used for the purchases to set up the Home Share on both PCs.
    iTunes: Setting up Home Sharing on your computer
    Have both computers running and have iTunes open on both computers.
    Now, in the iTunes on the computer you want to transfer music to, select the library that you want to transfer music from, as per the following screenshot:
    Once the other library loads, go down to the bottom of the screen and in "Show:" select "Items not in my library":
    If you want to import all of the songs you can now see, head up to the iTunes menu bar and go "Edit > Select all". Then head down to the bottom of the screen again and click the "Import" button in the bottom-right-hand corner.
    If there's a lot of stuff in your original PC's library, the transfer may take some time.

  • Replacing colour/texture from one image onto another?

    Desperately need some guidance here as this has been driving me nuts....
    I want to use the colour and texture from one photo onto my own design. Now, using the rubber stamp tool I am able only to clone a certain area that moves with the cross hair, but how can I clone a section from one photo and use that as a fill to create another design? In other words, clone a colour from one photo as a colour fill for another design?
    Even using the colour replace tool and selecting source: image I am left with the colour pallette as the destination and cannot use the colour from the image to paint my new image from it.
    Thanks a heap

    If I want to copy a single color from one image to another, here's what I'll do:
    Create a new rectangle in the source image
    With the rectangle selected, use the eyedropper to pick a color from someplace in the source image
    Copy the rectangle and paste it in the destination image
    Select the object I want to color and use the eyedropper tool to select the color from the copied rectangle
    (A layer with rectangles of different colors is sometimes handy for setting up a color scheme and using it consistently.)
    You can also create bitmap patterns to use as fills for vector objects. Fireworks comes with quite a few, but it's easy to add your own. Here are a couple of tutorials
    http://www.entheosweb.com/fireworks/patterns.asp
    http://www.peachpit.com/articles/article.aspx?p=30942&seqNum=4

  • How do i put the songs off one computer onto another

    how do i put the songs off one computer onto another

    Individual songs? Via a shared folder, external drive or a memory stick.
    See this migrate iTunes library post if you want to move the whole library.
    tt2

Maybe you are looking for

  • F150 - dunning run

    Hi , In F150  t code, when the user press F4 on the "Run on" we  are finding almost 15000 entries. the users of the company code are finding difficult to find their own ID and Run date. This is happening due to merger of 5 systems.(System Landscape o

  • Cannot use my iphone 3gs after update to iOs 6

    hey i m havin an iphone 3gs 32GB which i tried updating to iOs 6 and i was able to update my device but then its saying failed to activate your iphone install sim and all dat i have a sim installed n ive tried both the methods of activation i.e throu

  • How to creating a large sign with person's photo in illustrator? Please Help!

    Firstly, I'm very new to illustrator. I always use photoshop for everything but the company my person is using is only asking for it in vector. I'm creating a 4x8 ft sign. It contains text, a logo, and a picture of the person that it's for (like a bi

  • Movies have just stopped working in iTunes

    Please can someone help me, I have loads of movies in my iTunes library, and watch them through my apple tv, but for some reason now a couple of them won't play on my mac?? I double click them and I get nothing, then one opens but it's just a black s

  • Navigation problem pl suggest

    hi all my web.xml coding is <servlet>         <servlet-name>FacesServlet</servlet-name>         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>         <load-on-startup>1</load-on-startup>     </servlet>   <servlet-mapping>         <se