Nicolas Graziano

Results 20 comments of Nicolas Graziano

ANNOUCE is not handled by RtspMultiplexer. I do not understand what you are trying to do. RtspMultiplexer is only a sample of RTSP proxy you can do with the library,...

The SDP is in the message response of DESCRIBE. You can access in Data propertie. See https://github.com/ngraziano/SharpRTSP/blob/master/RtspClientExample/RTSPClient.cs#L706 for an exemple. `System.Text.Encoding.UTF8.GetString(message.Data)` allow to get it as string. Where do you...

RTSPClient.cs is an example of client, feel free to modify it after copying it to your project. Around line 706 , you can store the SDP in a new global...

Hello, Some camera do not want GET_PARAMETER but instead need OPTION for keep alive. If you are using the sample code in RtspClientExample/RTSPClient.cs, to use OPTION for keep alive you...

I have change the RTSP keep alive from OPTIONS to GET_PARAMETER in commit 7529bd6. For me it make VLC happy until the end of a file of more than 5...

Hello, sorry I don't know when I'll do that. I'm working alone on this project and it requires more time than I have. I'm interested in PR if there are...

hi, I will take a look at it. i was thinking to make modification in RtspTcpTransport . Next time can you create pull request, it is easier for me to...

Should be fix in 1.4.3

MJPEG added to client in 1.2.0

Hi, @nahueltaibo you can look at the [RtspClientExample](https://github.com/ngraziano/SharpRTSP/tree/dotnetcore/RtspClientExample) for use of MJPEG frame. On an mjpeg stream all the frame are save as JPEG files. Please use discussions tab of...