From b54141ed56b7f8096b8a1381432928753186e2fb Mon Sep 17 00:00:00 2001 From: Theelgirl <43764914+Theelgirl@users.noreply.github.com> Date: Sun, 25 Oct 2020 22:53:18 +0000 Subject: [PATCH] Revert broken tuning for ffmpeg --- fvid/fvid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fvid/fvid.py b/fvid/fvid.py index 349a100..baf9cdc 100644 --- a/fvid/fvid.py +++ b/fvid/fvid.py @@ -234,7 +234,7 @@ def make_video(output_filepath, framerate="1/5"): else: outputfile = output_filepath - os.system('ffmpeg -r ' + framerate + ' -i ./fvid_frames/encoded_frames_%d.png -c:v libx264rgb -tune zerolatency ' + outputfile) + os.system('ffmpeg -r ' + framerate + ' -i ./fvid_frames/encoded_frames_%d.png -c:v libx264rgb ' + outputfile)