How about a Video Player?
<video src="/videos/1.mp4">
Flash Fallback..
</video>
and could be called via:
video = $.video("/videos/1.mp4");
video.play();
video.pause();
video.seek(25.2678);
video.progressPercent(); /* video_time / duration * 100 */
video.progressPercent(25.6897); /* another way to seek */
ImageToCanvas(video.getframe()); /* function doesn't exist but can be made via CANVAS AND JS */
video.playlist = [
{
title: "Video one..",
url: "/videos/1.mp4"
}
];
video.next()
video.prev();
video.shuffle(1); /* enable shuffle */
video.shuffle(0); /* disable shuffle */
video.currentSrc();
video.currentTitle();
video.WHAT.EVER.YOU.CAN.THINK.OF();