Skip to content

Commit 82707f7

Browse files
committed
Disable only using keyframes for thumbnailing as it seems unstable (and fast seek should have the same effect anyway)
1 parent 3aaa5ec commit 82707f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ff-utils-winforms/Media/FfmpegExtract.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ public static async Task ExtractThumbs(string inputFile, string outputDir, int a
320320
for (int i = 0; i < amount; i++)
321321
{
322322
int time = interval * (i + 1);
323-
tasks.Add(ExtractSingleFrameAtTime(inputFile, Path.Combine(outputDir, $"thumb{i + 1}-s{time}.{format}"), time, maxH, true));
323+
tasks.Add(ExtractSingleFrameAtTime(inputFile, Path.Combine(outputDir, $"thumb{i + 1}-s{time}.{format}"), time, maxH, false));
324324
}
325325

326326
await Task.WhenAll(tasks);

0 commit comments

Comments
 (0)