Replies: 1 comment
-
RTSP can utilize either UDP or TCP, with TCP being the more commonly used protocol due to various issues associated with UDP on the internet, particularly because RTSP does not support UDP port multiplexing. Therefore, when implementing RTSP, SRS will only support TCP and not UDP.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
SRS doesn't support RTSP streaming. Check out the FAQ: RTSP for more info. The reason is, there's actually no use for it.
But for RTSP playback, there are actually two main scenarios where it's used:
Essentially, both scenarios are about simulating an IP camera, which supports RTSP streaming. SRS is convenient for accessing internet streams like RTMP or WebRTC. However, when connecting to other systems in the camera application scenario, you need to pull the RTSP stream from SRS.
Pelease note that SRS doesn't support RTSP push streaming because there's no real-world scenario for it.
TRANS_BY_GPT4
Beta Was this translation helpful? Give feedback.
All reactions