How can I play HDS vod stream using html5 video tag

I am using the following code to play the manifest.f4m vod file via wowza media server.but but it doesn't work. Please help if anyone knows.

<video width="320" height="240" controls>
  <source src="http://localhost:1935/vod/_definst_/mainVideo/smil:mainVideo.smil/manifest.f4m" type="video/mp4">

  Your browser does not support the video tag.
</video>

      

+3


source to share


2 answers


Since then, HTML5 does not support raw f4m. Try converting the video file to a compatible format.



+1


source


<video width="320" height="240" controls>
  <source src="http://localhost:1935/vod/_definst_/mainVideo/smil:mainVideo.smil/manifest.f4m" type="video/f4m">

  Your browser does not support the video tag.
</video>

      



try this code ...

0


source







All Articles