Reputation: 3697
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.
Upvotes: 7
Views: 21803
Reputation: 3355
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!
Upvotes: 10
Reputation: 101176
Don't do it yourself if you've never written a networking application before. It's no easy task to write a scalable and robust networking app and it's even harder to implement an existing protocol so that the implementation is fully compatible with the specification. You will fail or end up long over budget.
It will be far easier and cheaper to buy an existing component or integrate an existing server.
Google "streamcoders" for find a library which can handle RTSP.
Upvotes: 3