Streaming using RTSP over TCP

五迷三道 提交于 2019-12-12 08:13:47

问题


How does VLC Media player implement RTSP over TCP Streaming?

I am aware that, VLC Media player can be used as a streaming server and also a streaming client.

My requirement is to stream using TCP(over RTSP) data from the server to clients and I am not comfortable with C/C++ code. I am comfortable with C#. Can somebody point me to example implementations of TCP Streaming in C# ?

P.S- is there any other player which supports real time streaming using RTSP over TCP/UDP?


回答1:


To answer your original question: "How does VLC Media player implement RTSP over TCP Streaming?" The simple answer is that it is very, very complex to implement a good RTSP client - even an incomplete one. You should not attempt this task unless you have significant time and resources to commit to it.

However you can use VLC without any knowledge of C/C++. You require only to interface with the libvlc via C# interop. A great introduction to this exists at: George Heylar's blog. Also, for excellent code examples of a more detailed implementation you can see the NVLC project.

If you are determined to create your own RTSP solution you could look at the work that has been done by JFriedman in pure C#. When I tried using it earlier this year it still had significant shortcomings.

The pragmatic reality is that RTSP is not a lovely protocol and it is hard to work with. Many server implementations are non-standard so there is a great deal of work to make a client that will work with all RTSP streams.

UPDATE: Originally I suggested that VLC's RTSP Server was developed by Live555. In fact, it seems the RTSP client itself was developed by Live555.




回答2:


This article appears to be a good RTSP example:

http://www.codeproject.com/Articles/507218/Managed-Media-Aggregation-using-Rtsp-and-Rtp



来源:https://stackoverflow.com/questions/21039651/streaming-using-rtsp-over-tcp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!