Podcasting/Vodcasting: Distributing Your Audio and Video Files Via the Web
Advanced RSS Tags
We would now like to take our Podcast to the next level by adding more tags to the RSS feed to give PodCatchers (and thus our Subscribers) more information about our Podcast and various episodes.
We have arrived at the following podcast.rss file during the preceeding lessons:
Our functional but still boring podcast.rss file:Advanced Channel Tags
We will start with some of the advanced RSS tags that go within the <channel> tag before covering the more advanced tags within the <item> tag.
Some PodCatchers (including iTunes) are capable of displaying basic HTML within their content regions. This is not supported, however, in the basic tags. In order to use HTML and other special characters (i.e. anything other than a-z,A-Z,0-9,",',comma,.), you must use one of the iTunes-specific tags that we will cover on the next page.
| Tag Name | Name | Description |
| <copyright> | Copyright | A sentence or two describing the fair use of your Podcast. Seen by some PodCatchers. |
|
<copyright>Copyright 2006 by Ryan. No rights to distribute or disseminate without Author's consent.</copyright>
|
||
| <pubDate> | Publication Date | The last date of publication for this channel (i.e. the last time you added an Episode or made a change to this feed). The format that this tag requires is a bit awkward. Consider the following example:
Sun1, 042 Sep3 2010 144:345:216 PDT7
|
|
<pubDate>Sun, 04 Sep 2010 14:34:21 PDT</pubDate>
|
||
| <ttl> | Time to Live | The number of minutes the PodCatcher should wait before checking for new episodes. If you omit this tag, most PodCatchers will assume a wait period of 24 hours. |
|
<ttl>60</ttl>
|
||
| <image> | Image |
The "album art" for your Podcast. Each Episode may have its own <image>, but many PodCast directories (including the iTunes Music Store) will display Podcasts' feed url in the listing of Podcasts fitting certain criteria. The <image> tag has several sub-tags rather than attributes. These sub-tags include:
|
|
<image>
<url>http://craigspodcast.com/logo.jpg</url>
<link>http://craigspodcast.com/</url>
<title>Craig's Podcast Logo</url>
<description>A picture of <a href="mailto:craig@craigspodcast.com">me</a> and my new car.</description>
<width>300</width>
<height>300</height>
</image>
| ||
Here is our PodCast feed after adding these tags to our <channel>:
Advanced Item Tags
The next round of tags is very similar to the last round. In fact, many of them are exactly identical and have the same function. The only difference is going to be that the contents of the tags are going to pertain to each individual episode and not the Podcast as a whole.
That is, instead of us putting the URL to our Podcast's logo in the <image> tag, we are going to use an image that is specific to each Episode. The logo will be displayed on directories of multiple Podcasts, but the "album art" will be the content's of the most recent <item>'s <image> tag.
The following tags may also be used for each <item> within the <channel>. The caveats to their usage are the same as addressed earlier.
- <pubDate>
- <image> (and its sub-tags)
- <description> (remember that HTML is not okay for this)
Adding these for each of our <item>s, we are brought up to:
Our really almost complete but still boring podcast.rss file:What's Important: Recap
- Make sure you correctly update the <pubDate> in your <channel> every time you add a new Episode.
- Make sure each Episode (and thus each <item>) has its own <guid isPermaLink="false">.
That's it! There are of course more RSS and Podcasting tags, but they are mostly obscure. Please see Apple's Podcast Technical Spec page (opens in a new window) for more information.
What's next? Next we'll cover some of the iTunes-specific tags that you can use if you plan to list your Podcast on the widely popular, free, and publicly-available iTunes Music Store. We will also briefly cover a few of the other popular PodCast directories that use the iTunes tags. If you are not concerned with advanced features such as HTML-enabled show notes, keywords, and categories, you may safely skip the next page.
Then we'll need to upload our feed to a public server. We will do a quick-review of how to upload to your Student Dante or Staff Homer account using various means. Then we will cover validating your feed so we don't submit a broken feed (which guarantees no subscribers).
We will then conclude with a quick HTML wrap-up with pertinence to linking to your Podcast on your web page using royalty-free graphics.

