mediafront / osmplayer

The Open Standard Media Player is an all-in-one media player for the web. It is an industry changing, open source (MIT) media player that is built to dynamically deliver any type of web media, including HTML5, YouTube, Vimeo, and Flash.
http://www.mediafront.org
MIT License
342 stars 181 forks source link

How change playlist on the fly? #39

Closed Shamber closed 11 years ago

Shamber commented 11 years ago

I want to change the playlist on the fly by jquery, how to do this?

travist commented 11 years ago
minplayer.get('playlist', function(playlist) {
  playlist.options.playlist = 'http://......../myplaylist.xml';
  playlist.load(0, 0);
});