diff --git a/tools/clip/run.py b/tools/clip/run.py index 184131233b..31ef0591f0 100755 --- a/tools/clip/run.py +++ b/tools/clip/run.py @@ -69,7 +69,7 @@ def main(route: str, output_filepath: str, start_seconds: int, end_seconds: int) "yuv420p", output_filepath, ] - ffmpeg_proc = subprocess.Popen(ffmpeg_cmd, env=env) + ffmpeg_proc = subprocess.Popen(ffmpeg_cmd, env=env, stdout=DEVNULL, stderr=DEVNULL) atexit.register(lambda: ffmpeg_proc.terminate()) print('recording in progress...')