This is a quick and simple xsl transformation file to generate a comptible iTunes Podcast subscription RSS Feed for you to add to your podcasts.
wwdc2014.xml: This is a cleaned up version, using HTML Tidy Online, of the html saved from the Apple WWDC 2014 Videos website.
wwdc2014.xsl: This is the xsl transformation file that is required to transform the wwdc2014.xml to the RSS feed. This supports generating both HD and SD RSS feeds.
wwdc2014-hd.xml & wwdc2014-sd.xml: These files are the generated RSS feeds which you can directly get the raw and subscribe to.
You can subscribe to the podcast with the RSS feeds from the following links:
WWDC 2014 HD Videos
WWDC 2014 SD Videos
You can use any xslt processors to do this. I use xsltproc on my Mac. Just do the following commands:
xsltproc wwdc2014.xsl wwdc2014.xml > wwdc2014-hd.xml
If you do not provide any parameters, it will default to HD quality.
There is one parameter called quality which you can use to toggle between generating HD and SD RSS feeds.
xsltproc -stringparam quality hd wwdc2014.xsl wwdc2014.xml > wwdc2014-hd.xml
xsltproc -stringparam quality sd wwdc2014.xsl wwdc2014.xml > wwdc2014-hd.xml
Except as otherwise noted, this code is licensed under the New BSD License.