A little web application that acts as a filter between your agregator (like iTunes) and C9 rss feeds.
How it works? In order to subscribe to a podcast from iTunes (never tried with something else) via RSS feeds every RSS feed item must contain the enclosure element:
<channel>
...
<item>
...
<encolosure url="url_to_media_file" type="mime_type" />
(Note that iTunes requires also some other elements from http://www.itunes.com/dtds/podcast-1.0.dtd like itunes:author, itunes:subtitle etc. a complete list of specifications can be found
here).
Because C9 RSS feeds doesn't contains enclosure element (and other tags for that matter) you can't subscribe to them from iTunes or something else. But... in the feed description we have the links to media files (as we have "Watch", "Dowload', "WMA" and "MP3")
so it's enought just to do a regex on feed description and extract desired links and then create a new RSS feed which contains enclosure element (with url extracted from description) and needed elements.
Sample Image.
Forum Read Only
This forum has been made read only by the site admins. No new threads or comments can be added.
-
-
sorry there was a little bug in extension mapping, already fixed...
-
So you can filter the podcasts published on Channel 9 by certain criterias? Or what does it exactly do?
-
littleguru wrote:So you can filter the podcasts published on Channel 9 by certain criterias? Or what does it exactly do?
it creates podcasts, for example we have this rss feed for "C9 Show": http://channel9.msdn.com/rss.aspx?ShowID=34 we can't subscribe to it from iTunes (or something else) because it's just a rss feed (also with bugs, duplicate feed items) and it also doesn't contain the enclosure element on each item, and other elements. So what it does is just find in description the links to media files and adds enclosure element...