We have implemented this on a site, using the code of:
$(function() {
// initialize BigVideo
var BV = new $.BigVideo({useFlashForFirefox:false});
BV.init();
BV.show(
'resources/video/bg_grass.mp4',
{altSource:'resources/video/bg_grass.ogg'});
});
The problem is the video does not loop – it just stops at the end.
Any ideas?
If you add the ambient parameter and set the value to true, the video loops. It does not play sound though.