Disable enhanced-rtmp H265 default

This commit is contained in:
xiongziliang 2023-12-17 18:10:47 +08:00
parent a72d87cca7
commit 189f787746
2 changed files with 2 additions and 2 deletions

View File

@ -289,7 +289,7 @@ sslport=0
# rtmp是否直接代理模式 # rtmp是否直接代理模式
directProxy=1 directProxy=1
#h265 rtmp打包采用增强型rtmp标准还是国内拓展标准 #h265 rtmp打包采用增强型rtmp标准还是国内拓展标准
enhanced=1 enhanced=0
[rtp] [rtp]
#音频mtu大小该参数限制rtp最大字节数推荐不要超过1400 #音频mtu大小该参数限制rtp最大字节数推荐不要超过1400

View File

@ -242,7 +242,7 @@ static onceToken token([]() {
mINI::Instance()[kHandshakeSecond] = 15; mINI::Instance()[kHandshakeSecond] = 15;
mINI::Instance()[kKeepAliveSecond] = 15; mINI::Instance()[kKeepAliveSecond] = 15;
mINI::Instance()[kDirectProxy] = 1; mINI::Instance()[kDirectProxy] = 1;
mINI::Instance()[kEnhanced] = 1; mINI::Instance()[kEnhanced] = 0;
}); });
} // namespace Rtmp } // namespace Rtmp