Shivam Gupta
Shivam Gupta

Reputation: 51

How can I play HDS vod stream using html5 video tag

I am using following code to play manifest.f4m vod stream through wowza media server.but it is not working Please help if anybody 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>

Upvotes: 3

Views: 1963

Answers (2)

As of this time, HTML5 does not support raw f4m. Consider converting the video file to a compatible format.

Upvotes: 2

TM Dinesh
TM Dinesh

Reputation: 210

<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...

Upvotes: 0

Related Questions