diff options
author | pukkandan <pukkandan@gmail.com> | 2021-02-20 03:03:17 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-02-20 03:14:01 +0530 |
commit | 4524baf056c1611cea44ab5ebeb6cd8da82da6da (patch) | |
tree | 7dab233604dff3f3d1f9cf45f6de97311d63f5f2 /youtube_dlc/YoutubeDL.py | |
parent | bc2ca1bb75d586b75d83a6f60b680ee07227ff28 (diff) | |
download | hypervideo-pre-4524baf056c1611cea44ab5ebeb6cd8da82da6da.tar.lz hypervideo-pre-4524baf056c1611cea44ab5ebeb6cd8da82da6da.tar.xz hypervideo-pre-4524baf056c1611cea44ab5ebeb6cd8da82da6da.zip |
Release 2021.02.19
Diffstat (limited to 'youtube_dlc/YoutubeDL.py')
-rw-r--r-- | youtube_dlc/YoutubeDL.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dlc/YoutubeDL.py b/youtube_dlc/YoutubeDL.py index ac892b837..54b48750d 100644 --- a/youtube_dlc/YoutubeDL.py +++ b/youtube_dlc/YoutubeDL.py @@ -189,11 +189,15 @@ class YoutubeDL(object): into a single file allow_multiple_audio_streams: Allow multiple audio streams to be merged into a single file + paths: Dictionary of output paths. The allowed keys are 'home' + 'temp' and the keys of OUTTMPL_TYPES (in utils.py) outtmpl: Dictionary of templates for output names. Allowed keys - are 'default' and the keys of OUTTMPL_TYPES (in utils.py) + are 'default' and the keys of OUTTMPL_TYPES (in utils.py). + A string a also accepted for backward compatibility outtmpl_na_placeholder: Placeholder for unavailable meta fields. restrictfilenames: Do not allow "&" and spaces in file names trim_file_name: Limit length of filename (extension excluded) + windowsfilenames: Force the filenames to be windows compatible ignoreerrors: Do not stop on download errors (Default True when running youtube-dlc, but False when directly accessing YoutubeDL class) |