Ver Fonte

The -autoscale option was added in FFmpeg 4.4 (#8813)

Bond-009 há 2 anos atrás
pai
commit
da5913aa30

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

@@ -977,7 +977,7 @@ namespace MediaBrowser.Controller.MediaEncoding
 
 
             // Disable auto inserted SW scaler for HW decoders in case of changed resolution.
             // Disable auto inserted SW scaler for HW decoders in case of changed resolution.
             var isSwDecoder = string.IsNullOrEmpty(GetHardwareVideoDecoder(state, options));
             var isSwDecoder = string.IsNullOrEmpty(GetHardwareVideoDecoder(state, options));
-            if (!isSwDecoder)
+            if (!isSwDecoder && _mediaEncoder.EncoderVersion >= new Version(4, 4))
             {
             {
                 arg.Append(" -autoscale 0");
                 arg.Append(" -autoscale 0");
             }
             }