From ab52ebbfe54575b03988eff37628825e290de61e Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Fri, 13 Jan 2023 13:59:24 -0800 Subject: [PATCH] [DOCS] Extractor args example for english metadata (#415) --- src/ytdl_sub/config/preset_options.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ytdl_sub/config/preset_options.py b/src/ytdl_sub/config/preset_options.py index 47755a0c..860763ee 100644 --- a/src/ytdl_sub/config/preset_options.py +++ b/src/ytdl_sub/config/preset_options.py @@ -79,6 +79,12 @@ class YTDLOptions(LiteralDictValidator): cookiefile: "/path/to/cookies/file.txt" # Only download this number of videos/audio max_downloads: 10 + # Download and use English title/description/etc YouTube metadata + extractor_args: + youtube: + lang: + - "en" + where each key is a ytdl argument. Include in the example are some popular ytdl_options. """