Creating an iTunes U - Specific RSS Feed

iTunes uses RSS 2.0 plus additional iTunes and iTunes U tags. This section covers the additional iTunes U tags needed to create a properly configured RSS feed for iTunes U.

When creating an RSS feed for use with iTunes U, begin by following the guidelines outlined in Making a Podcast at http://www.apple.com/itunes/podcasts/specs.html and keep the following in mind:

In addition, you'll need the following iTunes U - specific tags:

<itunes:order>

The order tag allows you to specify the display order of tracks in your course.

You can use this element to override the default ordering. Specify the number value in which you want the track to appear. For example, if you want the <item> to appear as the first track in the course, you specify “1” in the <itunes:order> element.

For example:

<item>
...
<itunes:order>2</itunes:order>
...
</item>

Notes:

<itunes:isClosedCaptioned>

The closed captioned tag allows you to specify whether or not a track contains closed captioning information.

You can specify the following values: YES, NO. If you specify YES, iTunes U displays the Closed Captioning icon throughout the user interface and the iTunes Store. If you do not specify a value, or do not include the closed captioned tag, iTunes U cannot determine if your track contains closed captioning information and does not display the Closed Captioning icon.

For example:

<item>
...
<itunes:isClosedCaptioned>YES</itunes:isClosedCaptioned>
...
</item>

<enclosure url=" " type=" ">

The enclosure element allows you to include a Portable Document Format (PDF) or electronic publication (ePub) file in an RSS feed.

For example:

<item>
...
<enclosure url="enclosure url="http://example.com/podcasts/RSS-Basic.epub" type="application/epub+zip" length="220869"/>
...
</item>

For example:

<item>
...
<enclosure url="enclosure url="http://example.com/podcasts/RSS-Basic.pdf" type="application/pdf" length="220869"/>
...
</item>



© 2011 Apple Inc. All Rights Reserved. (Last updated: 2011-11-03)