Okay,
I found the way the basics of embedding work:
<video controls id="fsvideo"
poster={{!!poster}}>
<source src={{!!view}}{{!!start}}>
<source src={{!!fallback}}{{!!start}}>
</video>
Here are to more elevated questions. How must I wrap this code to
make the Video play Fullscreen by default?
var elem = document.getElementById("fsvideo");
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.mozRequestFullScreen) {
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) {
elem.webkitRequestFullscreen();
}
How do I set startingpoint/endpoint for local videofiles...
yours Jan