From dbde422d80d3d64047fd60d1782e143529e68535 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Sat, 26 Nov 2022 14:48:07 -0800 Subject: [PATCH] docs --- src/ytdl_sub/plugins/file_convert.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/ytdl_sub/plugins/file_convert.py b/src/ytdl_sub/plugins/file_convert.py index ba08f620..3ae1ebcb 100644 --- a/src/ytdl_sub/plugins/file_convert.py +++ b/src/ytdl_sub/plugins/file_convert.py @@ -34,8 +34,21 @@ class FileConvertOptions(PluginOptions): my_example_preset: file_convert: convert_to: "mp4" + + Supports custom ffmpeg conversions: + + .. code-block:: yaml + + presets: + my_example_preset: + file_convert: + convert_to: "mkv" convert_with: "ffmpeg" - ffmpeg_post_process_args: "asfd" + ffmpeg_post_process_args: > + -bitexact + -vcodec copy + -acodec copy + -scodec mov_text """ _required_keys = {"convert_to"}