소스 검색

also avoid 7ch transcoding

nyanmisaka 4 년 전
부모
커밋
ae1187042a
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs

+ 1 - 2
MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs

@@ -1726,8 +1726,7 @@ namespace MediaBrowser.Controller.MediaEncoding
             // 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.Value > 2 && resultChannels.Value < 6 || resultChannels.Value == 7))
             {
                 resultChannels = 2;
             }