I trying to play wowza sample video using html5 video tag.
This document, https://www.wowza.com/docs/how-to-play-video-using-the-html5-video-tag, is so simple, and I followed, but it doesn’t work.
I tried another approach following https://www.w3schools.com/html/html5_video.asp, but it doesn’t work.
In mobile devices (tested in android), everything is good.
I am really wondering if it works on desktop browsers.
Any help would be greatly appreciated.
[FYI]
<!doctype html>
<html>
<head>
<title>HTML5 Live Streaming Test</title>
</head>
<body>
<!-- <video width="320" height="240" controls> -->
<!-- <source src="http://[my_server_instance_ip]:1935/test/mp4:sample.mp4/playlist.m3u8" type="video/mp4"> -->
<!-- Your browser does not support the video tag. -->
<!-- </video> -->
<video width="640" height="400" controls="controls" src="http://[my_server_instance_ip]:1935/test/mp4:sample.mp4/playlist.m3u8"></video>
</body>
</html>