Can this library be used to receive an RTP stream without using RTSP? #920
Answered
by
steabert
Erikmmkarlsson
asked this question in
Q&A
-
In HTML5VideoPipeline you connect to a RTSP server. However, how does it work when receiving an RTP stream only, without using the RTSP protocol? |
Beta Was this translation helpful? Give feedback.
Answered by
steabert
Apr 16, 2024
Replies: 1 comment 1 reply
-
It should be possible to only deal with RTP, but probably not without some modification. In such a case you could skip the RTSP parser component completely, and replace it with an RTP parser. After that you can directly feed a stream of RTP packets to e.g. H.264 depay component. To make an RTP parser, you could e.g. start from the RTSP parser and remove anything unnecessary. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Erikmmkarlsson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be possible to only deal with RTP, but probably not without some modification. In such a case you could skip the RTSP parser component completely, and replace it with an RTP parser. After that you can directly feed a stream of RTP packets to e.g. H.264 depay component.
To make an RTP parser, you could e.g. start from the RTSP parser and remove anything unnecessary.