Hi All,
Is there any way to play wowza video on desktop browsers using html5 video tag.
playlist.m3u8 is for ipad devices how to play video on desktop browsers using HTML5 video tag?
Thank you…
Satish
Hi All,
Is there any way to play wowza video on desktop browsers using html5 video tag.
playlist.m3u8 is for ipad devices how to play video on desktop browsers using HTML5 video tag?
Thank you…
Satish
The HTML 5
Salvadore
Hi,
As Salvadore mentions above, the HTML5 video tag only works for HLS streams if used with the Safari browser.
Here’s an example use of the HTML5 video tag, that will work in Safari on OSX and iOS:
<!doctype html>
<html>
<head>
<title>Simple Movie Player</title>
</head>
<body>
<video src="http://WowzaIPaddress:1935/vod/mp4:sample.mp4/playlist.m3u8"
controls
height="270" width="480">
</video>
</body>
</html>
Daren
Hi salvadore ,
Thanks, But I am looking for playing Videos from Wowza Server from Video tag,
Thank you…
Satish.