From 0e9cc435c7734f4e1e5be9881f177c593c02f3b4 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Tue, 4 Mar 2025 09:05:34 -0500 Subject: [PATCH] Hide "options weren't used" message --- auto_editor/edit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_editor/edit.py b/auto_editor/edit.py index 0e6036b62..b1feaa391 100644 --- a/auto_editor/edit.py +++ b/auto_editor/edit.py @@ -305,7 +305,7 @@ def make_media(tl: v3, output_path: str) -> None: } else: options = {"movflags": "faststart"} - output = av.open(output_path, "w", options=options) + output = av.open(output_path, "w", container_options=options) if ctr.default_sub != "none" and not args.sn: sub_paths = make_new_subtitles(tl, log)