BogdanovKirill / RtspClientSharp

Pure C# RTSP client for .NET Standard without external dependencies and with true async nature. I welcome contributions.
MIT License
706 stars 284 forks source link

SimpleRTSPPlayer not playing #69

Closed imtrobin closed 4 years ago

imtrobin commented 4 years ago

Trying the RTSPSimplePlayer on this wowza sample stream, no video plays and the Receive throws timeout exception

rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov

Stream is working with vlc. Window 10, desktop. Lastest fresh pull from github.

BogdanovKirill commented 4 years ago

I don't see any problem, your link works in player. Try to set TCP to RtpTransport property in connection parameters.

imtrobin commented 4 years ago

Changed to TCP, the exception is libffmpeghelper.dll missing.

But it does not support UDP?

BogdanovKirill commented 4 years ago

Try to change solution platform from Any Cpu to x86 or x64. UDP could not work because of firewall and/or packet loss.

imtrobin commented 4 years ago

Ok, changed to x64, working with link both TCP and UDP. Thanks!