rtsp protocol interaction process
This article mainly introduces the knowledge points about it. Friends who are interested in [RTSP main process] and [rtsp protocol interaction process] can read the technical article contributed by [huabiaochen]. I hope this technology and experience can help you solve it. The technical issues related to [protocol] you encountered. RTSP protocol interaction process Streaming media push process option -> Announce -> Setup -> Record Streaming media streaming process option -> Describe -> Setup -> Play ? 1. OPTIONS OPTIONSrtsp://10.137.10.103/test.mpg RTSP/1.0 CSeq: 1 User-Agent:LibVLC/2.1.5 (LIVE555 Streaming Media v2014.05.27) /**********************Comment********************** // OPTIONS request This method is used to detect the methods supported by the server; this method can be sent to the server at any time. [OPTIONS]: Method. [rtsp://10.137.10.103/test.mpg]: URL of the requested media stream. [RTSP/1.0]: RTSP version. [CSeq]: serial number, every time a separate request is sent, the serial number will be incremented by one. If a request is resent due to lack of acknowledgment, the request MUST carry the original sequence number. /********************************************** */ RTSP/1.0 200 OK CSeq: 1 Date: Fri, May 082015 06:19:14 GMT Public: OPTIONS,DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE, GET_PARAMETER, SET_PARAMETER /**********************Comment********************** // OPTIONS response [RTSP/1.0] RTSP version. [200 OK]: status code and reason explanation. 【CSeq】: Serial number,…