Hello everybody,
I'm currently in a small team developping a production monitoring software, and my part of the software is all about dynamically loading HTML5 videos to read/compare/annotate them...
Check the screenshots (API is in PHP/Yii Framework, frontend is AngularJS):
I'm experiencing issues with HTML5 videos on Google Chrome (works fine on Chromium, FireFox, Safari, videos are converted in both mp4 and webm to be readable).
I'm using something like:
<video>
<source ng-src={{path}} type="webm"></source>
<source ng-src={{path}} type="mp4"></source>
</video>
Different videos can be loaded by clicking on them. At some point some videos won't load anymore and the fetching of the video will be in "pending..." mode in the network panel of Google Chrome.
Has anybody else met the problem?
Any kind of help would be much appreciated!
Thanks a lot,
Jonathan