1

I would like to provide a stream of images via RTSP using Indy 10 components. I don't need to know all the individual requests and all, that's all covered separate from what I need. But what Indy component should I use and how should I use it? This stream will not consist of sound, only images.

Note that RTSP is very similar to HTTP, but with a different structure.

4

1 に答える 1

4

Indy には RTSP または RTP/RTCP コンポーネントがないため、これらのプロトコルを最初から実装する必要があります。RTSP はテキストベースのプロトコルなので、 を使用できますが、コードの重複 (ヘッダーの読み取り、URL の処理など) を避けるために、そのメソッドから派生させてオーバーライドTIdCmdTCPServerする方がよい場合があります。画像に関しては、必要に応じて RTP/RTCP パケットを送信するために使用できます。TId(Custom)TCPServerDoExecute()TIdHTTPServerTIdUDPClient

于 2013-05-19T16:22:27.333 に答える