diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-06-16 03:19:27 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-06-16 03:19:27 +0300 |
commit | 2e456fc2b67df1894bf02ca61ebea11f57867c99 (patch) | |
tree | eaf324ad200093437aa9e43bc6db71530d74e176 | |
parent | 7d1e6e4b097bedeea3034388656ceb7757f53468 (diff) |
tools/esp32cam_capture2video: fix?
-rwxr-xr-x[-rw-r--r--] | tools/esp32cam_captures_to_video.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/esp32cam_captures_to_video.py b/tools/esp32cam_captures_to_video.py index 8bb625b..7625804 100644..100755 --- a/tools/esp32cam_captures_to_video.py +++ b/tools/esp32cam_captures_to_video.py @@ -89,7 +89,7 @@ def merge(groups: list[FileList], else: ffmpeg = 'ffmpeg' env = {} - args = ['-c:v', 'x264', + args = ['-c:v', 'libx264', # '-preset', 'veryfast', '-crf', '23', # '-vb', '448k', |