How to force a stream of RTP video from vlc over tcp?

I'm trying to transfer video via rtp using vlc, the default protocol is UDP, but its performance is very low (bitrate, resolution, smooth, ..)

So, I want to use vlc with rtp for streaming video over tcp protocol to get better performance.

Can anyone help me get vlc to stream rtp over tcp protocol. Please help me if you have any ideas.

Thank you very much!

+5
source share
2 answers

This article may be useful: http://www.wowza.com/forums/content.php?64-How-to-configure-VLC-media-player-for-RTSP-RTP-playback-%28RTSP-RTP-interleaved -and-tuning% 29

This article explains how to configure the VideoLAN VLC media player for real-time streaming or on-demand streaming through RTSP / RTP over TCP (RTSP / RTP alternates). Although HTTP streaming is a newer standard that offers more features, RTSP / RTP streaming can work better when streaming through a firewall / router that does not have open UDP streaming.

+3
source

If you use the command line client, add the -rtsp-tcp options:

vlc --rtsp-tcp rtsp://path/to/stream

0
source

Source: https://habr.com/ru/post/1234712/


All Articles