When I use plain html5 video/audio on Android, I have my user click a button on startup. In the click handler I kickstart all media:
$('.viewaud').each(function(i,el){
el.load();
el.play();
el.pause();
})
After that I can start videos/sounds programmatically without the user having to click. Is something similar possible in videogular?