Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
livest [2020/07/05 03:17] yairlivest [2020/07/23 09:37] – [HLS] yair
Line 21: Line 21:
 https://google.github.io/shaka-packager/html/index.html https://google.github.io/shaka-packager/html/index.html
  
 +===opencv>ffmpeg>hls===
 +[[https://www.nobile-engineering.com/wordpress/index.php/2018/10/30/video-streaming-hls-apache-nginx/|video-streaming-hls-apache-nginx]]\\
 +[[https://github.com/andreanobile/opencv_ffmpeg_streaming|opencv_ffmpeg_streaming]]
 +
 +
 +
 +===how to===
 +the easiest stream i got was using hlssink
 +<code dot>
 +  gst-launch-1.0 videotestsrc is-live=true ! x264enc ! mpegtsmux \
 +  ! hlssink playlist-root=https://your-site.org \
 +  location=/srv/hls/hlssink.%05d.ts \
 +  playlist-location=/srv/hls/playlist.m3u8
 +</code>
 +
 +and video.js on the other site
 +<code javascript>
 +<video-js id=vid1 width=600 height=300 class="vjs-default-skin" controls>
 +  <source
 +     src="https://example.com/index.m3u8"
 +     type="application/x-mpegURL">
 +</video-js>
 +<script src="video.js"></script>
 +<script src="videojs-http-streaming.min.js"></script>
 +<script>
 +var player = videojs('vid1');
 +player.play();
 +</script>
 +</code>
 +
 +pipe video from rtsp ueye
 +  gst-launch-1.0.exe rtspsrc location=rtsp://169.254.37.87:8554/mystream ! fakesink ! fpsdisplaysink
  
 ====jsmpeg==== ====jsmpeg====
Line 28: Line 60:
 ====JSsip==== ====JSsip====
 https://tryit.jssip.net/ https://tryit.jssip.net/
- 
  
 ====SRT==== ====SRT====
  
 https://www.haivision.com/blog/all/rtmp-vs-srt/ -- > {{:haivision_white_paper_rtmp_vs_srt_comparing_latency_and_maximum_bandwidth.pdf}} https://www.haivision.com/blog/all/rtmp-vs-srt/ -- > {{:haivision_white_paper_rtmp_vs_srt_comparing_latency_and_maximum_bandwidth.pdf}}
 +
 +[[https://www.collabora.com/news-and-blog/news-and-events/low-latency-streaming-of-security-feeds-with-srt-and-gstreamer.html| gst and srt]]
  
 {{ youtube>SbvklCb0nNk?medium }} {{ youtube>SbvklCb0nNk?medium }}
Line 62: Line 95:
  
  
 +
 +====AZURE====
 +does support SRT, unlike aws. with thier end of life RTMP coming iin 2021
 +{{:pasted:20200705-002205.png}}
 +
 +https://azure.microsoft.com/en-us/blog/what-s-new-in-azure-media-services-video-processing/
  
 ====AWS==== ====AWS====