Podcast parser for jPlayer ( XML RSS media )
=================
basic loading podcast in jPlayer playlist.
loadPodcast('http://your-podcast-url.xml');
Load playlist with Drop down
<select id="drop-playlist">
<option value="">Select Podcast</option>
<option value="http://feeds.twit.tv/twit" selected>This Week in Tech</option>
<option value="http://downloads.bbc.co.uk/podcasts/worldservice/globalnews/rss.xml">BBC News</option>
</select>
// Drop down playlist
$("#drop-playlist").change(function () {
var Podurl = this.value;
loadPodcast(Podurl);
});
More way to load podcast width jQuery in the demo file.
Clone the repo, git clone git://github.com/onigetoc/Podcast-parser-for-jPlayer.git
.
Have a bug? Please create an issue here on GitHub.
https://github.com/onigetoc/Podcast-parser-for-jPlayer/issues
Please submit all pull requests against *-wip branches. If your unit test contains javascript patches or features, you must include relevant unit tests. Thanks!
Gino Cote
The MIT License is simple and easy to understand and it places almost no restrictions on what you can do with Podcast parser for jPlayer.