Explorar el Código

Disable hevc encoding by default

Bill Thornton hace 4 años
padre
commit
cc0f191228
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      MediaBrowser.Model/Configuration/EncodingOptions.cs

+ 1 - 1
MediaBrowser.Model/Configuration/EncodingOptions.cs

@@ -35,7 +35,7 @@ namespace MediaBrowser.Model.Configuration
             EnableDecodingColorDepth10Vp9 = true;
             EnableEnhancedNvdecDecoder = true;
             EnableHardwareEncoding = true;
-            AllowHevcEncoding = true;
+            AllowHevcEncoding = false;
             EnableSubtitleExtraction = true;
             HardwareDecodingCodecs = new string[] { "h264", "vc1" };
         }