SRT: Default to request for VLC. #4515

This commit is contained in:
winlin
2025-10-03 15:27:03 -04:00
parent 702a58df6a
commit 71302c4a77
2 changed files with 3 additions and 3 deletions

View File

@@ -693,8 +693,8 @@ srt_server {
# This is used when SRT client connects without setting SRTO_STREAMID socket option.
# The streamid format follows SRT standard: #!::r=app/stream,m=publish|request
# Overwrite by env SRS_SRT_SERVER_DEFAULT_STREAMID
# default: #!::r=live/livestream,m=publish
default_streamid "#!::r=live/livestream,m=publish";
# default: #!::r=live/livestream,m=request
default_streamid "#!::r=live/livestream,m=request";
# The peerlatency is set by the sender side and will notify the receiver side.
# Overwrite by env SRS_SRT_SERVER_PEERLATENCY
# default: 0

View File

@@ -7621,7 +7621,7 @@ string SrsConfig::get_srt_default_streamid()
{
SRS_OVERWRITE_BY_ENV_STRING("srs.srt_server.default_streamid"); // SRS_SRT_SERVER_DEFAULT_STREAMID
static string DEFAULT = "#!::r=live/livestream,m=publish";
static string DEFAULT = "#!::r=live/livestream,m=request";
SrsConfDirective *conf = root_->get("srt_server");
if (!conf) {
return DEFAULT;