Răsfoiți Sursa

use probe size for image extraction

Luke Pulverenti 12 ani în urmă
părinte
comite
51bc4edbb0

+ 7 - 1
MediaBrowser.Server.Implementations/MediaEncoder/MediaEncoder.cs

@@ -727,10 +727,16 @@ namespace MediaBrowser.Server.Implementations.MediaEncoder
                 throw new ArgumentNullException("outputPath");
             }
 
-
             var args = type != InputType.Dvd ? string.Format("-i {0} -threads 0 -v quiet -vframes 1 -filter:v select=\\'eq(pict_type\\,I)\\' -f image2 \"{1}\"", inputPath, outputPath) :
                 string.Format("-i {0} -threads 0 -v quiet -vframes 1 -f image2 \"{1}\"", inputPath, outputPath);
 
+            var probeSize = GetProbeSizeArgument(type);
+
+            if (!string.IsNullOrEmpty(probeSize))
+            {
+                args = probeSize + " " + args;
+            }
+
             if (offset.HasValue)
             {
                 args = string.Format("-ss {0} ", Convert.ToInt32(offset.Value.TotalSeconds)) + args;