on a Blazor PWA wasm I need to show to the user an RTSP stream (for example: rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mp4). I first thought this was possible using the html5 video tag, but it didn't work.
After reading a lot an try a lot of things, I can't do it without re-streaming the video on a backend, but in my situation I need to avoid that.
Can anyone help me or guide me how to achieve that?
Thanks.
Already try:
- html5 rtsp player: https://github.com/Streamedian/html5_rtsp_player (need a back to transform rtsp to websocket)
- FfmpegBlazor https://github.com/sps014/FFmpegBlazor (can't use a stream, only local files: https://github.com/sps014/FFmpegBlazor/issues/8)
- https://github.com/ffmpegwasm/ffmpeg.wasm (idem)
- Using csharp opencv to open stream and bind it to an image https://www.reddit.com/r/opencv/comments/gdueb9/question_correct_way_to_read_a_rtsp_stream_and/ + https://github.com/shimat/opencvsharp + https://github.com/shimat/opencvsharp_blazor_sample (can't open the video stream). Also ASP.NET Core stream video from the OpenCVSharp capture
- C# RTSP Client for .NET Core 3.0 / .NET 5.0 https://github.com/i-TechSoftware/RtspClientSharpCore (need backend to re-stream)
- Stream API: https://developer.mozilla.org/en-US/docs/Web/API/Streams_API https://web.dev/media-mse-basics/ can't do it using rtsp strem
- On SO:
- How to stream video over rtsp protocol for Live555 server on web browser
- stream RTSP to HTML website
- How can I display an RTSP video stream in a web page?
- streaming rtsp video in vlc plugin
- RTSP to WEBRTC live video streaming
- RTSP h.264 in google chrome browser
- Realtime WebSocket stream to RTSP
- Best approach to get RTSP streaming into web browser from IP Camera?
- Forwarding RTSP stream from IP Camera to Browser in ASP.NET Core
- live stream RTSP to html all browsers
- How to embed streaming rtsp media into an html5 page
- OpenCV videocapture read camera rtsp error
- Streaming via RTSP or RTP in HTML5
- RTSP solution for JavaScript/HTML5
- RTP RTSP implementation in javascript
- Streaming via RTSP or RTP in HTML5
- Is it possible to send RTSP streaming to html page using node js?
- How to stream RTSP live video in Firefox and Chrome now that the VLC plugin is not supported anymore?
- How to stream video over rtsp protocol for Live555 server on web browser