+ 1
Has anyone program a playlist for videos?
I search suggestions
4 ответов
+ 1
It's basically just a container with links in it. Then just use your jQuery to load the video into the video container (or if you want it to refresh to a new page like YouTube, don't use .load)
Have you already gotten started? If so, I can help point you in the right direction. It's not as complicated as it sound. However, note that you'll want to have a database or something that stores the actual list for the user's account.
+ 1
I'd like to know about it
+ 1
I mean to create a video html and if the video ends play another
ex:
playlist = ['video.mp4','video2.mp4','video3.mp4'];
i = 1;
$('video').ends(function(){
$(this).src(list[i]);
$(this).play();
i++
})
0
ohh that one I don't know