How do I merge two libraries of Podcasts?

My library of podcasts has been split out on two computers, and now I would like to consolidate them into one?
How do I go about that?
The one library contains about three years' worth of daily podcasts and the other library contains about one month's worth, and it would be nice to have them together. This came about because my motherboard fried in an electric storm and getting everything up and running correctly took some time.

I once had a problem where iTunes "forgot" about all my podcasts. I managed to fix this by simply dragging the downloaded podcast files into iTunes. It seemed to recognise them as being podcast files, and added a new subscription with those files in them.

Similar Messages

  • How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

    How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

    This should do the trick
    Home Sharing Learn More
    http://support.apple.com/kb/HT201976
    Best of Luck

  • How can I merge two iPhoto libraries stored on an external drive?

    Today I was in a One-to-One at the Apple Store.  I want to merge two i-Photo libraries into one.  One library is on my Air, the other is on my iMac.  Both libraries have been moved to an external drive.  When I try to move one onto the other, they won't go.  Yet I am certain that while at the store today, the person there started to merge them.  He did not need the library manager software in order to do so.  We stopped the merge in order to move on to another issue.  Now that I am home, I can't get the libraries to merge.  What am I failing to do?  Thanks!

    The only way to merge two libraryies is to use  iPhoto Library Manager which will merge two libraries and keep keywords, titles, faces, places, and other metadata intact.
    If one imports one library into another library every image file in the first library, originals, thumbnails, face files, etc,  get imported as an original photo. You will end up with a total mess.  DO NOT IMPORT ONE LIBRARY INTO ANOTHER LIBRARY!
    If you have backup copies of your libraries get them back and use iPhoto Library Manager to merge them.
    OT

  • How do I merge itunes libraries?

    How do I merge itunes libraries from two separate accounts?

    Why are you posting a second thread with the same question. This one isn't any clearer than your first post.
    What do you mean "merge itunes libraries from two separate accounts"? You have an iPod listed. Are you talking about getting music from two separate iTunes libraries on two separate computers? Are you talking about getting iTunes purchased music on a single iPod from two separate Apple/iTunes IDs?
    What is it that you are wanting to do? If you do not take the time to explain what it is you are wanting to accomplish, then you are not going to get the information you need to do it. We are not mind readers.
    Cheers,
    GB

  • How can I merge iPhoto libraries?

    How can I merge two iPhoto libraries?

    Use Aperture - or iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/ - 
    LN

  • TS3988 how do i merge two icloud accounts - on on my computer and ipad, a different icloud id on my iphone?

    How do I merge two iCloud accounts into one?  One account is on my mac and ipad, the other on my iphone.

    Welcome to the Apple community.
    You cannot merge accounts, you will need to choose one and use it.

  • How do I merge two valid, purchased iTunes accounts into one so all my music is in same account?

    I have two valid, purchasd iTunes accounts.  Older iPod has some great music, I just got a new iPad and set up second iTunes account, bought some more iTunes items for that account.  Just discovered iCloud.  Now I want to put all my music from both accounts onto the cloud so I can access it on all my apple devices.   Can't seem to add from one account to the other.  Can sign onto the new account wiht my old iPod, but it will not let me sync without erasing all the music on the device.  How can I merge these two accounts into one?
    PS  Makes you wonder how helpful support is when the usernames "Frustrated," "really frustrated," and "Help!!!!" are all taken...lol

    HeyStupid wrote:
    how do I merge two valid, purchased iTunes accounts into one so all my music is in same account?
    You cannot. iTunes pruchases remian tied to the account they were purchased with.
    I just got a new iPad and set up second iTunes account,
    Why?
    Remove your info from new account, update old account as needed and use that.

  • GUI - How do i merge two diffrent layout managers into one tab?

    Hello
    I want to create a cellphone, and when you click a button it will be displayed in a textfield
    the buttons are in a grid layout (4,3) and the textfield is in a border layout (NORTH)
    I have the layouts in two seperate tabs, but how do i merge two diffrent layouts in to one tab ?
    textfield:
    package guitelefon;
    import java.awt.*;
    import javax.swing.*;
    public class BorderPanel extends JPanel
       public BorderPanel()
          setLayout (new BorderLayout());
          setBackground (Color.green);
          JTextField output = new JTextField(5);
          add (output, BorderLayout.NORTH);
    }Buttons:
    package guitelefon;
    import java.awt.*;
    import javax.swing.*;
    public class GridPanel extends JPanel
        public GridPanel()
          setLayout (new GridLayout (4, 3));
          setBackground (Color.green);
          JButton b1 = new JButton ("1");
          JButton b2 = new JButton ("2");
          JButton b3 = new JButton ("3");
          JButton b4 = new JButton ("4");
          JButton b5 = new JButton ("5");
          JButton b6 = new JButton ("6");
          JButton b7 = new JButton ("7");
          JButton b8 = new JButton ("8");
          JButton b9 = new JButton ("9");
          JButton bs = new JButton ("*");
          JButton b0 = new JButton ("0");
          JButton bf = new JButton ("#");
          add (b1);
          add (b2);
          add (b3);
          add (b4);
          add (b5);
          add (b6);
          add (b7);
          add (b8);
          add (b9);
          add (bs);
          add (b0);
          add (bf);
    }driver:
    package guitelefon;
    //  LayoutDemo.java       Java Foundations
    //  Demonstrates the use of flow, border, grid, and box layouts.
    import javax.swing.*;
    public class LayoutDemo
         public static void main (String[] args)
          JFrame frame = new JFrame ("Cellhpone");
          frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
          JTabbedPane tp = new JTabbedPane();
          tp.addTab ("Grid", new GridPanel());
          tp.addTab ("Border", new BorderPanel());
          frame.getContentPane().add(tp);
          frame.pack();
          frame.setVisible(true);
    }

    a simple example with compilable code:
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import javax.swing.*;
    public class Main {
      public static void main(String[] args) {
        JFrame frame = new JFrame("Cellhpone");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel panel = new JPanel(new BorderLayout());
        panel.add(new FooPanel(), BorderLayout.CENTER);
        panel.add(new BarPanel(), BorderLayout.NORTH);
        frame.getContentPane().add(panel);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    class FooPanel extends JPanel {
      private static final String[][] BTN_STRINGS = {
        {"1", "2", "3"},
        {"4", "5", "6"},
        {"7", "8", "9"},
        {"*", "0", "#"}};
      public FooPanel() {
        setLayout(new GridLayout(BTN_STRINGS.length, BTN_STRINGS[0].length, 5, 5));
        for (int row = 0; row < BTN_STRINGS.length; row++) {
          for (int col = 0; col < BTN_STRINGS[row].length; col++) {
            JButton btn = new JButton(BTN_STRINGS[row][col]);
            add(btn);
    class BarPanel extends JPanel {
      private JTextField field = new JTextField();
      public BarPanel() {
        setLayout(new BorderLayout());
        add(field, BorderLayout.CENTER);
    }Edited by: Encephalopathic on Oct 29, 2009 7:56 AM

  • HT1347 How do I run two libraries from one computer?

    How do I run two libraries from one computer? One library is on the computer's hard drive, the second library is on an external hard drive. The computer that had the external hard drive crashed and I need to fix the iTunes library on it. How can I do this without corrupting the library on my internal hard drive?

    Launch iTunes with the Shift key held down and either create a new library or choose the one on the external drive. Any rented movies downloaded from another computer won't play.
    (81212)

  • Merge two libraries

    Is there a way to merge two libraries ?
    On my MBPro I have one iTunes library. On my MacPro another.
    There's some cross over of music, but a lot of difference too between them.
    Can I merge the two library files (on my external terabyte drive) and import the one large library file to iTunes on both mac's ?

    Drag one of the two libraries to the external drive, launch iTunes on that computer with the Option key held down, and point it to that instance of the library. On the other computer, point iTunes to the library on the external drive and then drag the internal library into the open iTunes window.
    (44576)

  • We just got married.  How can we merge accounts/libraries?

    We just got married, and each have a LARGE library of m4p's.  How can we merge accounts/libraries into one family account?

    To merge iTunes libraries, import the content and playlists from one to the other.
    iTunes Store accounts can't be merged.
    (107368)

  • How can i join two libraries from two different users

    how can i join two libraries from two different users in the same computer?

    I should add that you can turn on SHARING where each user can see the other user's library and play stuff out of it. But they can not import those tracks to their own library or put them into their own playlists or burn CDs of the shared library.
    Also note, to do this you need to have the fast switching option enabled with the accounts so both can be running at the same time and both must have iTunes running at the same time.
    Patrick

  • Merged two libraries. new one is smaller than the largest one!

    I merged two iPhoto libraries using iPhoto Library Manager. One library had 6299 pics and the other had 178. The new one has 6474 pics (short of 3 photographs). The deal is that my library with 6299 is 33gb and my new library with 6474 pics is 31 gbs!
    have i lost something crucial?
    Neerav

    You merged two libraries into a third, new one? Most likely there's no caches developed yet. Sync with a phone or iPod and see what happens then.

  • HT204053 how can I merge two Apple-IDs?

    how can I merge two Apple-IDs?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Apple will not merge two Apple IDs, nor will Apple transfer content from one ID to another.
    http://support.apple.com/kb/HE37

  • How can I merge iTune libraries?

    I have a MacBook Pro and a Mac Pro tower. Each has iTunes 10. Each computer has its own iTunes music library. There is about 70 % overlap of music. How can I merge the libraries so they are the same on each computer? Many thanks for any help.
    Russ

    RussKendall wrote:
    How can I merge the libraries
    take a look @ these 3rd party apps:
    PowerTunes
    TuneRanger
    SuperSync
    JGG

Maybe you are looking for

  • Binary to XMl Conversion

    Hi All, I am trying to convert data from internal table to Binary and then taking the same in the XML format for Display. Steps 1 : from internal table to Binary conversion. create & set encoding lo_encoding = lo_ixml->create_encoding(               

  • Can multiple BT stacks co-exist?

    Hi Just to clarify. when using PC Suite 6.82 in XP SP2 notebook, can we have both Ms BT stack and WIDCOMM stack loaded? Details as below:- Operating system: Microsoft Windows XP Build 2600 Service Pack 2 Language: English Language for non-Unicode pro

  • JFileChooser has a bug in 1.6?

    Hi, With JRE 1.5/1.4, I believed when you bring up the JFileChooser dialog and select the "Detail" view, you will get 4 columns: Name, Size, Type, and Modified. With 1.5/1.4, there seems to be 2 problems: 1. You cannot sort the list by clicking on th

  • How cam i recover a lost Disk Image?

    I tried creating an encrypted 30GB disk image but got impatient and clicked cancel while it was still creating. Although it finished creating and even asked me to create a password, I can't seem to find it anywhere. My 30GB of space is gone. How can

  • Minimum Files needed for bare bones XP Install?`

    Hello I'm new here having recently bought my first MBP. Does anyone know the minimum files needed for a custom (lite) XP Pro install using BootCamp? All I want to run is DV-Rack plus maybe 1 or 2 other programs but I don't want to waste space on my 2