Skip to content

Commit 78a9274

Browse files
blakehawkinsbramp
authored andcommitted
Fix missing .done() on Builder
1 parent c01fc75 commit 78a9274

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ FFmpegBuilder builder = new FFmpegBuilder()
5555
.setVideoFrameRate(24, 1) // at 24 frames per second
5656
.setVideoResolution(640, 480) // at 640x480 resolution
5757

58-
.setStrict(FFmpegBuilder.Strict.EXPERIMENTAL); // Allow FFmpeg to use experimental specs
58+
.setStrict(FFmpegBuilder.Strict.EXPERIMENTAL) // Allow FFmpeg to use experimental specs
59+
.done();
5960

6061
FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);
6162

0 commit comments

Comments
 (0)