[DOCS] Extractor args example for english metadata

This commit is contained in:
Jesse Bannon 2023-01-13 13:30:58 -08:00
parent c95c0f6aa4
commit 242b3e860c

View file

@ -79,6 +79,12 @@ class YTDLOptions(LiteralDictValidator):
cookiefile: "/path/to/cookies/file.txt" cookiefile: "/path/to/cookies/file.txt"
# Only download this number of videos/audio # Only download this number of videos/audio
max_downloads: 10 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. where each key is a ytdl argument. Include in the example are some popular ytdl_options.
""" """