Reputation: 51
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
Reputation: 14286
As of this time, HTML5 does not support raw f4m. Consider converting the video file to a compatible format.
Upvotes: 2
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