]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/options.py
[youtube] Extract more thumbnails
[yt-dlp.git] / yt_dlp / options.py
index 2a42712b6f9fbbc3c1b8fa90c91a3f3b2db3e350..f9201bf01c0b323a4bfd363cb135a078a4b37848 100644 (file)
@@ -524,8 +524,12 @@ def _dict_from_options_callback(
         help="Don't give any special preference to free containers (default)")
     video_format.add_option(
         '--check-formats',
-        action='store_true', dest='check_formats', default=False,
-        help="Check that the formats selected are actually downloadable (Experimental)")
+        action='store_true', dest='check_formats', default=None,
+        help='Check that the formats selected are actually downloadable')
+    video_format.add_option(
+        '--no-check-formats',
+        action='store_false', dest='check_formats',
+        help='Do not check that the formats selected are actually downloadable')
     video_format.add_option(
         '-F', '--list-formats',
         action='store_true', dest='listformats',