Use a separate field for stream key in custom streaming

This commit is contained in:
dec05eba
2025-08-03 16:18:24 +02:00
parent b1e650c7ec
commit c1d76b5169
6 changed files with 21 additions and 5 deletions

View File

@@ -2875,6 +2875,11 @@ namespace gsr {
{}
else
url = "rtmp://" + url;
if(!url.empty() && url.back() != '/' && url.back() != '=')
url += "/";
url += config.streaming_config.custom.key;
}
return url;
}