3

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>

2 Answers2

2

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

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

TM Dinesh
  • 210
  • 3
  • 13