I have a Movie_Manifest.mpd file that consists of 5 .webm video streams (consisting of different sizes and bps) and 1 audio file. The question I ask is: can it be played via the "simple" HTML5 HTML tag?
I tried this and it does not work:
<video controls>
<source src = "Movie_Manifest.mpd"/>
</video>
Well, it works, but he chooses the lowest quality video stream, and the output is laggy. I would like it to have adaptive bitstream streaming. You might be thinking, "Do you think your bandwidth is so slow?" Yes, my bandwidth is slow, but not so slow. And besides, when I run this low-quality webm file by itself, it runs smoothly.
To repeat:
1) Can I use the “simple” HTML5 tag for adaptive bitstream?
or
2) Should I use an open source media player (which the video tag will access via javascript)?
Thanks and happy streams
source
share