HTML5 Video Errors
-
rintravia last edited by
Hello,
I have a very simple site (internal facing so there isn't a public URL) that plays a video and it works fine on all browsers and the TV emulator. When I go to play the video using the Opera browser on a Sony TV( xbr-65x810c), the video plays for about five seconds, and then restarts itself. Below is the HTML5 code I'm using and I'm unsure what would be causing this when it works fine on the emulator. Any help would be appreciated, thanks!
<!DOCTYPE html>
<html>
<body>
<div style = "margin-left:auto;margin-right:auto;width:650px;">
<video width="320" height="240" controls loop="true">
<source src="MyVideo.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</body>
</html> -
rintravia last edited by
Looks like I can't post code snippets, I'll find some way to post the code in a little bit.