How do you create a podcast list by adding files?

I have a site that has mp3s, but no podcasting subscription type tools (http://www.emmanuelnyc.org/sermons/index.html)
I want to download the mp3s then listen to them on my ipod touch.
How do I create a podcast group and add these files to it? I tried "add folder to library" and "add file to library" and cant' find it anywhere in itunes. Tried searching and searching... no clues.
any assistance appreciated.

The page you linked to has only MP3 files. There is no RSS feed (Podcast button), so those files cannot be downloaded "as Podcasts".
However, if you right-click  any one of them you will see an option to "Save link as..." or "Save file as...", which will then allow you to download and save the MP3 onto your computer. It is not a Podcast, it is simply an MP3 file.
A Podcast is a file (usually audio or video) that has been downloaded using an RSS feed. It is the process of being downloaded as an RSS feed that defines it as a Podcast. No matter what anyone else tells you, you cannot download an MP3 file and the turn it into a Podcast.
Since the site provides no method of downloading the files in bulk, or automatically, then you will have to download each one individually. Put them all in one common folder.
To add them to your iTunes Library, in iTunes, turn on the menu bar using the CTRL+B command. Then, on the File menu is...
and using Add Folder To Library will allow you to add the files, in that folder, to your Library in one move.
Now that the files are in your Library, you still cannot "make them appear to be Podcasts". Once again, this is the case - no matter who might tell you otherwise.
But -
I'm going to assume that you do not want these files to play when you're listening to your music, especially in shuffle mode. This is often why people want to set these files as Podcasts (and various bodges have been tried in order to try and achieve this end).
The trick is to set the files to Skip when shuffling and this can be done to all the files at once. Highlight all the files in question and select File/Get Info/Options>Skip when shuffling and change the drop-down to Yes.
Now, since they are set to skip when shuffling, that's exactly what will happen. It also means that you can start (and play the whole of) each file individually and if the iPod is still in shuffle mode, it will stop at the end of each episode. To play several, or all episodes without pause, simply turn off shuffle and navigate to the first episode. They will then play one after the other.
By the way, you cannot use the custom podcast feed method that you mentioned. It's simply another bodge.

Similar Messages

  • How do you create a podcast playlist and get all unplayed podcasts copied to it?

    How do you create a podcast playlist and get all unplayed podcasts copied to it?

    Creat a Smart Playlist in iTunes (File -> New Smart Playlist) that looks like the following:
    Once you have successfully done that you can set it up to sync to your iPod Shuffle from under the Shuffle's Podcast configuration tab/pane in iTunes.
    B-rock
    B-rock

  • How do you create a mailing list on an ipod?

    I will sometimes send an email on my ipod touch 4g to multiple people at the same time. But every time I do it I have to manuelly add in everybody one contact at a time. How can I create a mailing list that I can just select whenever I want to send an email to the same group of people?

    By using an app to make a group. The iPod does not support making groups.
    https://itunes.apple.com/us/app/id358960275?mt=8
    https://itunes.apple.com/us/app/id454171229?mt=8

  • How do you create a bulleted list in Illustrator CS6?

    I want the bullet to remain with the text like it would in a MS Word bulleted list.
    Thanks!

    As mentioned Illustrator does not have a style of bulletted list. Thanks to some great typographical control you can create this using firs line indent (I set mine to -4.5 pt for this typeface & point size). This will give you hanging bullets, though if you change your type, that -4.5 would have to change.

  • How do you create a mailing list?

    Is there a place in mail where I can create a group of email addresses that I email frequently? I can't even find my address book.

    In Address Book, note the "Group" panel on the left.
    You can create a group by clicking on the "+" on the bottom of the panel, and populate it by dragging cards of people in the address book into the group.
    You can also create a group in Address Book form the File menu, which gives you options to create a group, and "New Group From Selection" which is handy if you've selected a number of cards in your contact list.
    Finally, there's my personal favorite, "File > New Smart Group". This is excellent because it permits you to create a group that's made of cards meeting criteria that you specify. If you add a new card with the specified criteria, it's part of the group. One thing you could do is create a group of people that, for example, live in your hometown... However, I've found it immensely useful to select cards based on a word or phrase in the note field (e.g., I have a smart group called Christmas Card that contains all people with the phrase "xmas card" in the note field). You can also make groups like "everyone that's got a birthday in the next week" and so on.
    If you want to send e-mail to a whole group, simply type the group name in the To:, Cc: or Bcc: fields in Mail. You'll notice that as you type, the group name will appear in a drop down and you can select it. When you do, the group name will be replaced with all the individuals in the list.

  • How can you create a linked list? GUI?

    I have the following program that I wrote:
    package damagecounter;
    import java.io.*;
    import java.util.*;
    public class Main
         public static void main (String[] args) throws Exception
              String logline;
              Player player1 = new Player("Kazzandar");
              try
                   BufferedReader logfile = new BufferedReader(new FileReader("TeilmonRun.txt"));
                   logline = logfile.readLine();
                   while (logline != null)
                        if (logline.startsWith (player1.getName (), 0))
                             if (logline.contains ("recites"))
                                  player1.recites++;
                             if (logline.contains ("rescues"))
                                  player1.rescues++;
                             if (logline.contains ("utters the words"))
                                  player1.spells++;
                             if (logline.contains ("sprawling with a powerful bash."))
                                  player1.bashes++;
                             if (logline.contains ("got toasted by"))
                                  player1.deaths++;
                             if ((logline.contains ("-=")) && (logline.contains ("=-")))
                                  if (logline.startsWith (player1.getName (), 0))
                                       String damage = logline.substring(logline.indexOf ("-=") + 2 , logline.indexOf ("=-"));
                                       player1.setDamage (Integer.parseInt (damage));
                        logline = logfile.readLine ();
              catch (Exception e)
                   System.out.println ("Log file not found or corrupt.");
                   e.printStackTrace();
              player1.printStats();
    }As of right now the code require a person to enter the name of a player and then scans the log file to determine the appropriate counts for that player. If I want to scan the file for multiple players how would I be able to do that without having to run the program over and over. The reason being that sometimes the logs have over 15 different players and I'd hate to have to run the program 15 times to get each players stats. Any suggestions? Would I have to make a linked list?

    Yes, the log file looks something like that. Here is a small 15 line version of what the log file actually looks like:
    Kazzandar's stab misses Icingdeath. -=0=-
    Arien's slash >>> ANNIHILATES <<< Icingdeath! -=118=-
    Arien's slash >>> ANNIHILATES <<< Icingdeath! -=112=-
    Arien's slash <<< ERADICATES >>> Icingdeath! -=158=-
    Parrish utters the words, 'yjrr pzar'.
    Arien rescues Shargaas!
    Kazzandar's counterattack does UNSPEAKABLE things to Icingdeath! -=636=-
    Icingdeath's claw does UNSPEAKABLE things to Arien! -=760=-
    Arien's fireball scratches Icingdeath. -=4=-
    Arien's lightning bolt grazes Icingdeath. -=7=-
    Arien's counterattack -- DESSICATES -- Icingdeath! -=540=-
    Icingdeath's claw COMPLETELY TRASHES Arien! -=802=-
    Arien is DEAD!
    Kitiara's fireball grazes Icingdeath. -=5=-
    Kitiara's lightning bolt grazes Icingdeath. -=8=-
    Almost always the player name is first but sometimes the "mob" name (In this case Icingdeath) comes out. I don't mind if Icingdeath is referenced as a player and included in the stats, not that big a deal. Thanks for the idea on the HashMap I'll looking into how it works. Since this is my first Java program I often find myself lost at where to begin.
    I changed "got toasted by" to "is DEAD!" since it's easier to read. I also changed the majority of the main code into a method for the player class. The main code looks like this now:
    public static void main (String[] args) throws Exception
              Player player1 = new Player("Shargaas");
              player1.scanLogForStats("TeilmonRun.txt");
              player1.printStats();
         I was hoping this would make it easier, anyway, thanks again and I'll definitely be looking into HashMap.

  • How do you create a linked list

    i need a linked list to hold data which would be words so that the words can be held by the linked list and appear in alphabetica order?

    public class DoubleLink1
         private NodeData head;
         private NodeData tail;
         public DoubleLink1()
         this.tail = null;
         this.head = null;
         public void add(Contact info)
         NodeData newNode = new NodeData(info);
         if(head != null)
         newNode.next = head;
         head.prev = newNode;
         head = newNode;
         else
         head = tail = newNode;
         public Contact retrieve(String name)
         NodeData current = head;
         while(current !=null)
         if(current.data.getName().equals(name))
         return current.data;
         current = current.next;
         return null;
         public void traverse()
         NodeData current = head;
         while(current !=null)
    //     current.getData());print();
         current = current.next;
         public boolean delPhoneNum(String name)
         NodeData current = head;
         NodeData previous = head.prev;
         NodeData next = head.next;
         boolean found = false;
         if (head == null)
         return false;
         while(current != null)
         if(current.data.getName().equals(name))
         found = true;
         return found;
         previous = current;
         current = current.next;
         if (current != null)
         next = current.next;
         if (found)
         if (previous == null)
         head = head.next;
         else if (next == null)
         tail = tail.prev;
         else
         previous = current.next;
         next = current.prev;
         return found;
         }//DoubleLink
    so i have this linked list..how can i apply it to my program with the words instead of the numbers and phone contact

  • HELP!  How do you create a 8 bit png?

    Given a bufferedImage how do you create a 8 bit png to file?
    Right now i am just using the standard imageIO:
    ImageIO.write(tempImg, "PNG", target2);
    Thank you

    Still need help, I could do it for a value lower. contact me at [email protected]

  • How do you erase old podcast in the mode list ?

    How do you erase old podcast in the mode list ?

    Thanks.
    Well I used the "List" view on the right and I was able to delete podcasts from there.
    I guess I'll have to get used to another view...
    I also lost all my old poscats archived though.  Not sure if it is because of wonderful 11.1 iTunes or because I bought a new computer. They're all lost. But that's a different problem.
    Since you seem so ressourceful, maybe you can help on another problem that I don't seem to be the only one having ?  Have a look at the discussion titled "
    In iTunes 11.1 when a podcast finishes it starts playing the next oldest one automatically.

  • How do you create a link to a pdf in Muse? Thought it was going to show that with Katie's menu and can"t find in any of the tutorials.

    How do you create a link to a pdf in Muse? Thought it was going to show that with Katie's menu and can't find in any of the tutorials.

    The steps would be :
    - Add files from file menu > select pdf > add to site
    - Select the content (rectangle,text etc) and click on hyperlink dropdown > it should show you the added files list
    - Select the file you want to link
    Thanks,
    Sanjit

  • How do I create an email list sign up form for my iWeb website?

    Well that's the question - how do I create an email list sign up form for my iWeb website?
    Could someone tell me what's the simplest way using iWeb to create an interactive option
    for users to enter their email address and the info be forwarded to me so I can add to an
    email list?
    It would be great if, since I'm using a Mac computer & iWeb, there was a way to have the
    submitted emails automatically added to a group in my Mac Addressbook.
    I got this MacBook Pro in Sept 2010 so I believe that's iWeb '08 I'm using.
    Anyway I'm thinking there should be a way to do this with some system involving an HTMK
    Widget and an email account.
    By the way this is for hosting through a 'real server', not MobileMe (which I plan to get later
    when I can afford it).
    Any help or suggestions would be appreciated.
    Mark

    Website forms require some code in a snippet and a formmail.php script on the server to process the form and send the info to the required email address. You can do all this when you switch to a "real" server.
    In the meantime you can use a form  or marketing service or, better still, an application like MailShoot which generates the form, handles the database and sends out the bulk emails.
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • SharePoint Designer 2013 (2010 Platform Workflow) - How can I create a new list item with a SPECIFIC content type?

    In SharePoint 2010 I created workflows that used the 'Create list Item' Action, which then set the Content Type ID (so I could create documents of various types in a document library). 
    We just switched to the SharePoint 2013 platform, and now the drop down for Content Type ID is blank in all of the workflows that are still using the SharePoint 2010 platform.  Is there any way to create a list item with specific content
    type?  Even if I could just input a string into that field instead of using this blank drop-down.  Please help! 

    Hi Sarah,
    According to your description, my understanding is that you cannot create a new list item with a specific content type using SharePoint 2010 Platform Workflow.
    I tested the same scenario in my environment, and the Create List Item worked fine with the specific content type.
    How did you create the content type?
    Please check if the content type is added to the list/library the workflow associated with.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • HT4191 iPhone Local Storage "My iPhone" - How do you create this folder for use by the Notes app on a iPhone or iPad?  If I want to keep some notes only on my device and not in a cloud environment associated with an e-mail account.

    iPhone Local Storage "My iPhone" - How do you create this folder for use by the Notes app on a iPhone or iPad?  If I want to keep some notes only on my device and not in a cloud environment associated with an e-mail account.  I've seen reference to the  "My iPhone" local storage put no mention on how you create this folder or access this folder within the Notes app.  I realize storing information in a local storage like this provides no syncing between other iDevices but that is exactly what I'm looking for.  I'm running iOS7.0.4 on a iPhone 5S, and a iPad Air.  Any help would be greatly appreciated.

    If you go to Settings > Notes > Default Account you will see "On My iPhone" as the default account and the only choice if you have not enabled syncing Notes in Settings >iCloud or Settings > Mail, Contacts, Calendars. If you have enabled syncing you can still select "On My iPhone" as the default account. When you are in the Notes app you won't see any accounts listed if you have not enabled syncing because they are all in the On My iPhone account and that is the only place possible. It is not a folder that you create.

  • How do you create a new account for a family member?

    My daughter and I both have Ipods, and want to setup SEPARATE accounts. Itunes 7 worked great, but now when we 'upgraded' to 8, it MERGED all our files. So I thought I had a separate account, but it turns out when I load a new song, it goes into HER Itunes files. She deleted all my info, and I REALLY want a separate account (that sticks).
    My songs are still in my directory under "Mikes Itunes", but when I reloaded them into what I thought was a fresh entry, it turns out it went into my daughter's Itunes file too! What is up with Itunes 8? and how can you create a TRUE separate account so I have control over MY songs!?

    First, let's make it easier to swap between accounts. In the Accounts pane of System Preferences click on the Login Options (after unlocking the pane). Enable fast user switching. This will put a new menu in the top right of the screen. You can then swap to the other account without having to log out of the current one.
    Log into the original account. Select the folder you want access from the other account and choose Get Info from the file menu. There is a section called Sharing & Permissions. You will need to click on the padlock to make changes. Click on the + to add permissions for the other user account by selecting the user account from list that appears. Set the permission for that account to read only. Once you have it listed then choose the "Apply to enclosed items" from the gear menu below the list. This should give you access from the other account to that folder and any folders contained in it.
    For iTunes you will want to do this to the Music folder, giving you access to the files below. From within iTunes you can select Add to Library from the file menu, and then select the music from the other account to that account's iTunes library. Once you have set up the new library whoever's library is the original can clean up the library to remove any music they don't want (now that it's in the new account).

  • Re: How do you create and use "common" type classes?

    Hi,
    You have 2 potential solutions in your case :
    1- Sub-class TextNullable class of Framework and add your methods in the
    sub-class.
    This is the way Domain class work. Only Nullable classes are sub-classable.
    This is usefull for Data Dictionary.
    The code will be located in any partition that uses or references the supplier
    plan.
    2- Put your add on code on a specific class and instanciate it in your user
    classes (client or server).
    You could also use interface for a better conception if needed. The code will
    also be in any partition that uses or references the supplier plan where your
    add on class is located.
    If you don't want that code to be on each partition, you could use libraries :
    configure as library the utility plan where is your add-on class.
    You can find an example of the second case (using a QuickSort class,
    GenericArray add-on) with the "QuickSort & List" sample on my personal site
    http://perso.club-internet.fr/dnguyen/
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Robinson, Richard a &eacute;crit:
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Richard,
    Your question about "utility classes" brings up a number of issues, all of
    which are important to long-term success with Forte.
    There is no such thing as a static method (method that is associated with a
    class but without an implicit object reference - this/self/me "pointer") in
    TOOL, nor is there such thing as a global method (method not associated
    with a class at all). This is in contrast to C++, which has both, and
    Java, which has static methods, but not global classes. Frequently, Forte
    developers will write code like this:
    result, num : double;
    // get initial value for num....
    tmpDoubleData : DoubleData = new;
    tmpDoubleData.DoubleValue = num;
    result = tmpDoubleData.Sqrt().DoubleValue;
    tmpDoubleData = NIL; // send a hint to the garbage collector
    in places where a C++ programmer would write:
    double result, num;
    // get initial value for num....
    result = Math::Sqrt(num);
    or a Java programmer would write:
    double result, num;
    // get initial value for num....
    result = Math.sqrt(num);
    The result of this is that you end up allocating an extra object now and
    then. In practice, this is not a big deal memory-wise. If you have a
    server that is getting a lot of hits, or if you are doing some intense
    processing, then you could pre-allocate and reuse the data object. Note
    that optimization has its own issues, so you should start by allocating
    only when you need the object.
    If you are looking for a StringUtil class, then you will want to use an
    instance of TextData or TextNullable. If you are looking to add methods,
    you could subclass from TextNullable, and add methods. Note that you will
    still have to instantiate an object and call methods on that object.
    The next issue you raise is where the object resides. As long as you do
    not have an anchored object, you will always have a copy of an object on a
    partition. If you do not pass the object in a call to another partition,
    the object never leaves. If you pass the object to another partition, then
    the other partition will have its own copy of the object. This means that
    the client and the server will have their own copies, which is the effect
    you are looking for.
    Some developers new to Forte will try to get around the lack of global
    methods in TOOL by creating a user-visible service object and then calling
    methods on it. If you have a general utility, like string handling, this
    is a bad idea, since a service object can reside only on a single
    partition.
    Summary:
    * You may find everything you want in TextData.
    * Unless you anchor the object, the instance will reside where you
    intuitively expect it.
    * To patch over the lack of static methods in TOOL, simply allocate an
    instance when required.
    Feel free to email me if you have more questions on this.
    At the bottom of each message that goes through the mailing list server,
    the address for the list archive is printed:
    http://pinehurst.sageit.com/listarchive/.
    Good Luck,
    CSB
    -----Original Message-----
    From: Robinson, Richard
    Sent: Tuesday, March 02, 1999 5:44 PM
    To: '[email protected]'
    Subject: How do you create and use "common" type classes?
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance

Maybe you are looking for