C# Streaming from Panasonic IP camera using RTSP

ch.264mpegrtspstreaming

I want to receive an RTSP stream from a Panasonic camera (Model WV-SPN531) and display the live video in my C# Form application.
If I use VLC and connect to "rtsp://IP_ADDRESS/MediaInput/h264/stream_1" the streaming works fine.
Codec: H264 – MPEG-4 AVC (part10) (h264)
Resolution: 1920×1080 (15 FPS)

I have tried this library, but it does not work: http://net7mma.codeplex.com/ .

I wrote to the developer of the library and I described the problem and he replied that: "There's not an available MPEG decoder in C# right now, not one which I know of immediately anyway."

Can you help me?

Best Answer

I have used this SDK to play RTSP video in C#

https://sourceforge.net/projects/onvifdm/files/%21sample_winform/

It uses a hosted executable to play the video but works very well

I also tested https://github.com/ZeBobo5/Vlc.DotNet before hand but the performance was a bit choppy compared with the above.

Related Topic