JSFiddle - React, Tailwind, and code Playground
by gianlucaguarini
HTML
<script src='http://troncon.ca/ESO/jquery.html5Loader.js'></script>
<script type='text/javascript'>
$.html5Loader({
filesToLoad: {
'files': [{
'type': 'VIDEO',
'sources': {
'h264': {
'source': 'http://troncon.ca/ESO/test.mp4',
'size': 5,
979,
174
}
}
}]
},
onBeforeLoad: function() {},
onComplete: function() {},
onElementLoaded: function(obj, elm) {
alert('hi')
},
onUpdate: function(percentage) {}
});
</script>
<video width="1920" height="1080" controls>
<source src="http://troncon.ca/ESO/test.mp4" type="video/mp4">Your browser does not support the video tag.</video>