I'm trying to play a .webm video using LeanBackPlayer but I get 'No video with supported format and MIME type found'. Firefox is supposed to support .webm files. This is the page:
<!DOCTYPE html>
<html>
<body>
<h1>Test</h1>
<div class="leanback-player-video">
<video width="400" height="300" preload="metadata" controls>
<source src="/movies/back.webm" type='video.webm; codecs="vp8, vorbis"'/>
</video>
</div>
</body>
</html>
Some of the info of file back.webm:
Stream 0:
Codec:Google/On2's VP8 (VP80)
Decoded format: Planar 4:20:0 YUV
Stream 1:
Codec: Vorbis Audio (vorb)
Encoder: Lavc56.21.100
Can anybody spot an error here?
+ Reply to Thread
Results 1 to 5 of 5
-
-
Have you tried google "No video with supported format and MIME type found" ?
And test also in Chrome. It should support html5 webm also. -
I think it's a slash, not period for "video/webm"
I uploaded 2 examples . Test locally in firefox. Ignore the LeanBack GUI player for a moment (Just use default firefox HTML5)
index1.html plays, but index2.html gives your error message -
DO you have to use the type at all? It seems to work fine without it also.