Can I use a <video> or <audio> tag to play a playlist, and to control them?
My goal is to know when a video/song has finished to play and take the next and change its volume.
|
|
you could load next clip in the onend event like that
More information here => http://www.whatwg.org/specs/web-apps/current-work/#video |
||||
|
|
|
I created a JS fiddle for this here: http://jsfiddle.net/Barzi/Jzs6B/9/ First, your HTML markup looks like this:
Second, your JavaScript code via JQuery library will look like this:
And last but not least, your CSS:
|
||||
|
|
|
You should take a look at Popcorn.js - a javascript framework for interacting with Html5 : http://popcornjs.org/documentation |
|||
|
|
|
jPlayer is a free and open source HTML5 Audio and Video library that you may find useful. It has support for playlists built in: http://jplayer.org/ |
|||
|
|
|
Yep, you can simply point your src tag to a .m3u playlist file. A .m3u file is easy to construct -
-----UPDATE----- Well, it turns out playlist m3u files are supported on the iPhone, but not on much else including Safari 5 which is kind of sad. I'm not sure about Android phones but I doubt they support it either since Chrome doesn't. Sorry for the misinformation. |
|||||||
|
|
There's no way to define a playlist using just a |
|||
|
|
|
It has been done there : http://www.jezra.net/projects/pageplayer |
|||
|
|