<script>
function failed(e) { alert("Error: "+e.target.error.code); }
</script>
<video controls onerror="failed(event)">
<source id="videoSource" src="video_62.mp4" type="video/mp4"/>
</video>
<video controls onerror="failed(event)" src="video_62.mp4">
</video>
This is my code. Both video tags work in Chrome.
In Chromium, the first does nothing - it will not even attempt to load the video. The <source> tag seems to be ignored.
The second throws an error code of 4 - MEDIA_ERR_SRC_NOT_SUPPORTED
Any ideas ? What am I missing ?
Thanks.