BogdanovKirill / RtspClientSharp

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

Why do I always receive audio streams #118

Closed zhuzwing closed 2 years ago

zhuzwing commented 2 years ago
     rtspClient.FrameReceived += delegate (object o, RawFrame rawFrame)  //rawFrame  is audio
            {
                if (!(rawFrame is RtspClientSharpCore.RawFrames.Video.RawVideoFrame rawVideoFrame))
                    return;

            };