diff options
author | CeruleanSky <CeruleanSky@users.noreply.github.com> | 2021-08-25 07:49:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 17:19:05 +0530 |
commit | 1c36c1f3205e514717b974355f84b7fc823194d8 (patch) | |
tree | e08443113cfee827255c07639fa7ec277e3ce76b /yt_dlp/options.py | |
parent | e0493e90fc4183a3fee114c2d87d3e2463495984 (diff) | |
download | hypervideo-pre-1c36c1f3205e514717b974355f84b7fc823194d8.tar.lz hypervideo-pre-1c36c1f3205e514717b974355f84b7fc823194d8.tar.xz hypervideo-pre-1c36c1f3205e514717b974355f84b7fc823194d8.zip |
Fix `--no-prefer-free-formats` (#787)
Authored by: CeruleanSky
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 86aad3393..c26d498a5 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -548,7 +548,7 @@ def parseOpts(overrideArguments=None): 'Use with "-S ext" to strictly prefer free containers irrespective of quality')) video_format.add_option( '--no-prefer-free-formats', - action='store_true', dest='prefer_free_formats', default=False, + action='store_false', dest='prefer_free_formats', default=False, help="Don't give any special preference to free containers (default)") video_format.add_option( '--check-formats', |