diff --git a/docs/presets.rst b/docs/presets.rst index 23768b71..d0df18e8 100644 --- a/docs/presets.rst +++ b/docs/presets.rst @@ -127,3 +127,16 @@ one or more season presets, with the following override variables: # tv_show_genre: "ytdl-sub" # episode_title: "{upload_date_standardized} - {title}" # episode_description: "{webpage_url}" + +Common +------ + +Common presets are applicable to any config. + +Best Video Quality +^^^^^^^^^^^^^^^^^^ + +Add the following preset to download the best available video and audio quality, and remux +it into an MP4 container: + +* ``best_video_quality`` diff --git a/src/ytdl_sub/prebuilt_presets/helpers/common.yaml b/src/ytdl_sub/prebuilt_presets/helpers/common.yaml new file mode 100644 index 00000000..c220b842 --- /dev/null +++ b/src/ytdl_sub/prebuilt_presets/helpers/common.yaml @@ -0,0 +1,9 @@ + + +presets: + + best_video_quality: + ytdl_options: + format: "bestvideo+bestaudio/best" + merge_output_format: "mp4" + remux_video: "mp4"