Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RTSP over SSL using ffmpeg

Tags:

ffmpeg

rtsp

Is it possible to stream RTSP securely over SSL using ffmpeg? I see that there's no way to pass https for the rtsp_transport option. I've been told it's possible to stream RTSP over HTTPS.

like image 414
user3091519 Avatar asked Oct 31 '22 19:10

user3091519


1 Answers

Yes, if you use the RTSPS scheme in your URL, it will use TLS as the transport layer protocol. See rtsp.c

like image 181
Kyle Redfearn Avatar answered Nov 18 '22 08:11

Kyle Redfearn