delphi - How to go about building an RTSP server using Indy components? -
i provide stream of images via rtsp using indy 10 components. don't need know individual requests , all, that's covered separate need. indy component should use , how should use it? stream not consist of sound, images.
note rtsp similar http, different structure.
indy not have rtsp or rtp/rtcp components, have implement protocols scratch. rtsp textual-based protocol, can use tidcmdtcpserver
, though may better derive tid(custom)tcpserver
, override doexecute()
method avoid duplicated code (reading headers, processing urls, etc), tidhttpserver
does. images, can use tidudpclient
send rtp/rtcp packets needed.
Comments
Post a Comment