mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-24 19:16:32 +00:00
update hls stream copy rules
This commit is contained in:
@@ -513,7 +513,14 @@ namespace MediaBrowser.Model.Dlna
|
||||
{
|
||||
if (targetAudioChannels.Value >= 5 && (maxTotalBitrate ?? 0) >= 2000000)
|
||||
{
|
||||
defaultBitrate = 320000;
|
||||
if (StringHelper.EqualsIgnoreCase(targetAudioCodec, "ac3"))
|
||||
{
|
||||
defaultBitrate = 384000;
|
||||
}
|
||||
else
|
||||
{
|
||||
defaultBitrate = 320000;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user