mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-09 14:12:23 +00:00
avoid transcoding to 3ch audio for HLS streaming
This commit is contained in:
@@ -1722,6 +1722,16 @@ namespace MediaBrowser.Controller.MediaEncoding
|
||||
: transcoderChannelLimit.Value;
|
||||
}
|
||||
|
||||
// Avoid transcoding to audio channels other than 1ch, 2ch, 6ch (5.1 layout) and 8ch (7.1 layout).
|
||||
// https://developer.apple.com/documentation/http_live_streaming/hls_authoring_specification_for_apple_devices
|
||||
if (isTranscodingAudio
|
||||
&& resultChannels.HasValue
|
||||
&& resultChannels.Value > 2
|
||||
&& resultChannels.Value < 6)
|
||||
{
|
||||
resultChannels = 2;
|
||||
}
|
||||
|
||||
return resultChannels;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user