Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RTSP video streaming implementation

I have to write an app in C#. The aplication is a video streaming client-server using rtsp protocol. It is dificult to me to start implementing because i never done before such a big app. If someone could give me some hints or a guideline I will apreciate.

like image 533
andrew Avatar asked Jan 16 '12 12:01

andrew


1 Answers

I have implemented RFC2326 Aka Rtsp in completely managed code.

There is a CodeProject article @ http://www.codeproject.com/Articles/507218/Managed-Media-Aggregation-using-Rtsp-and-Rtp

And the homepage for the library is http://net7mma.codeplex.com/

It took less than 30 days to implement, is completely standards compliant and has draft 2.0 support.

No over budget only over performance. .

Hopefully it helps you!

like image 173
Jay Avatar answered Sep 21 '22 07:09

Jay