Fix use of TLS for input from local RTMP server

This commit is contained in:
Ingo Oppermann 2022-10-11 15:39:52 +02:00
parent 8a0521846b
commit df9ae03900
No known key found for this signature in database
GPG Key ID: 2AB32426E9DD229E

View File

@ -384,7 +384,7 @@ const getLocalHLS = (config, name) => {
};
const getLocalRTMP = (config) => {
return getRTMPAddress(config.rtmp.local, config.rtmp.app, config.rtmp.name, config.rtmp.token, config.rtmp.secure);
return getRTMPAddress(config.rtmp.local, config.rtmp.app, config.rtmp.name, config.rtmp.token, false);
};
const getLocalSRT = (config) => {