nodejs live streaming server
Check the library used: node-media-server
Service: custom
Server: rtmp://[ServerIp]/live
StreamKey: [anykey]
Example to html
<div class="main">
<h1>倉庫監視カメラ</h1>
<h2>ノートパソコンカメラ</h2>
<div class="video">
<video id="video_smaple" controls ></video>
</div>
</div>
<script>
if(Hls.isSupported()) {
var video = document.getElementById('video_smaple');
var hls = new Hls();
hls.loadSource('http://[ServerIp]/live/[anykey]/index.m3u8');
hls.attachMedia(video);
}
</script>