diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-06-16 22:38:14 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-06-16 22:38:14 +0300 |
commit | eafd0f41b385ad356e874677f674cbcf27908a94 (patch) | |
tree | 0a39e4b230deaa7fea7b6fe778922d83a64e538c | |
parent | 46af1e90f5867e3f141ceb230a3b71a05c310840 (diff) |
tools/esp32cam_captures_to_video.py: obvious fix
-rwxr-xr-x | 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 72aaa5c..86880f2 100755 --- a/tools/esp32cam_captures_to_video.py +++ b/tools/esp32cam_captures_to_video.py @@ -100,7 +100,7 @@ def merge(groups: list[FileList], ] if rotate != 0: - args.extend(['-map_metadata', '0', '-metadata:s:v', f'rotate="{rotate}"', '-codec', 'copy']) + args.extend(['-map_metadata', '0', '-metadata:s:v', f'rotate="{rotate}"']) cmd = [ffmpeg, '-y', '-f', 'concat', |