Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML5 video - displaying only subsection of a longer video

I would like to show only a certain section from a long HTML5 video where the full video will not be accessible at all. I need to have something like this http://metavid.ucsc.edu/wiki/Stream:Senate_proceeding_02-13-09/0:05:40/0:47:29

I know about the option of using Media Fragment URI, but I don't know how exactly show with it only the requested part.

like image 995
David_bk Avatar asked Nov 02 '22 16:11

David_bk


1 Answers

Using Media Fragment URI is a good option and to restrict users from accessing other parts of the video you just need to have your own custom controls. For example -- http://ninsuna.elis.ugent.be/MFPlayer/html5

Here is also a tutorial for building HTML5 video custom controls --- http://www.developphp.com/view.php?tid=1347

like image 60
Tsovinar Avatar answered Nov 09 '22 12:11

Tsovinar