diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-01-01 13:42:43 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-01-01 14:11:15 +0530 |
commit | 2a06bb4eb671eb306a2687ef0a4f853b936f05e0 (patch) | |
tree | ca2c12a7dd44ac6e772e7d1d1ef7a8ef5fdd31a6 | |
parent | 88fb9425775da7f92d24e8b5f3009cafb56e94d6 (diff) | |
download | hypervideo-pre-2a06bb4eb671eb306a2687ef0a4f853b936f05e0.tar.lz hypervideo-pre-2a06bb4eb671eb306a2687ef0a4f853b936f05e0.tar.xz hypervideo-pre-2a06bb4eb671eb306a2687ef0a4f853b936f05e0.zip |
Add `--compat-options 2021,2022`
Use these to guard against future compat changes. This allows devs to
change defaults and make other potentially breaking changes more easily.
If you need everything to work exactly as-is, put this in your config
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | yt_dlp/options.py | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -159,6 +159,8 @@ For ease of use, a few more compat options are available: * `--compat-options all`: Use all compat options (Do NOT use) * `--compat-options youtube-dl`: Same as `--compat-options all,-multistreams` * `--compat-options youtube-dlc`: Same as `--compat-options all,-no-live-chat,-no-youtube-channel-redirect` +* `--compat-options 2021`: Same as `--compat-options 2022,no-certifi,filename-sanitization,no-youtube-prefer-utc-upload-date` +* `--compat-options 2022`: Currently does nothing. Use this to enable all future compat options # INSTALLATION diff --git a/yt_dlp/options.py b/yt_dlp/options.py index be4695cbb..e9766c02d 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -470,6 +470,8 @@ def create_parser(): }, 'aliases': { 'youtube-dl': ['all', '-multistreams'], 'youtube-dlc': ['all', '-no-youtube-channel-redirect', '-no-live-chat'], + '2021': ['2022', 'no-certifi', 'filename-sanitization', 'no-youtube-prefer-utc-upload-date'], + '2022': [], } }, help=( 'Options that can help keep compatibility with youtube-dl or youtube-dlc ' |