2
0
Эх сурвалжийг харах

Remove experimental mark for some options

Sergey M․ 7 жил өмнө
parent
commit
504f20dd30

+ 5 - 5
youtube_dl/YoutubeDL.py

@@ -211,7 +211,7 @@ class YoutubeDL(object):
                        At the moment, this is only supported by YouTube.
                        At the moment, this is only supported by YouTube.
     proxy:             URL of the proxy server to use
     proxy:             URL of the proxy server to use
     geo_verification_proxy:  URL of the proxy to use for IP address verification
     geo_verification_proxy:  URL of the proxy to use for IP address verification
-                       on geo-restricted sites. (Experimental)
+                       on geo-restricted sites.
     socket_timeout:    Time to wait for unresponsive hosts, in seconds
     socket_timeout:    Time to wait for unresponsive hosts, in seconds
     bidi_workaround:   Work around buggy terminals without bidirectional text
     bidi_workaround:   Work around buggy terminals without bidirectional text
                        support, using fridibi
                        support, using fridibi
@@ -259,7 +259,7 @@ class YoutubeDL(object):
                        - "warn": only emit a warning
                        - "warn": only emit a warning
                        - "detect_or_warn": check whether we can do anything
                        - "detect_or_warn": check whether we can do anything
                                            about it, warn otherwise (default)
                                            about it, warn otherwise (default)
-    source_address:    (Experimental) Client-side IP address to bind to.
+    source_address:    Client-side IP address to bind to.
     call_home:         Boolean, true iff we are allowed to contact the
     call_home:         Boolean, true iff we are allowed to contact the
                        youtube-dl servers for debugging.
                        youtube-dl servers for debugging.
     sleep_interval:    Number of seconds to sleep before each download when
     sleep_interval:    Number of seconds to sleep before each download when
@@ -281,14 +281,14 @@ class YoutubeDL(object):
                        match_filter_func in utils.py is one example for this.
                        match_filter_func in utils.py is one example for this.
     no_color:          Do not emit color codes in output.
     no_color:          Do not emit color codes in output.
     geo_bypass:        Bypass geographic restriction via faking X-Forwarded-For
     geo_bypass:        Bypass geographic restriction via faking X-Forwarded-For
-                       HTTP header (experimental)
+                       HTTP header
     geo_bypass_country:
     geo_bypass_country:
                        Two-letter ISO 3166-2 country code that will be used for
                        Two-letter ISO 3166-2 country code that will be used for
                        explicit geographic restriction bypassing via faking
                        explicit geographic restriction bypassing via faking
-                       X-Forwarded-For HTTP header (experimental)
+                       X-Forwarded-For HTTP header
     geo_bypass_ip_block:
     geo_bypass_ip_block:
                        IP range in CIDR notation that will be used similarly to
                        IP range in CIDR notation that will be used similarly to
-                       geo_bypass_country (experimental)
+                       geo_bypass_country
 
 
     The following options determine which downloader is picked:
     The following options determine which downloader is picked:
     external_downloader: Executable of the external downloader to call.
     external_downloader: Executable of the external downloader to call.

+ 0 - 1
youtube_dl/downloader/common.py

@@ -45,7 +45,6 @@ class FileDownloader(object):
     min_filesize:       Skip files smaller than this size
     min_filesize:       Skip files smaller than this size
     max_filesize:       Skip files larger than this size
     max_filesize:       Skip files larger than this size
     xattr_set_filesize: Set ytdl.filesize user xattribute with expected size.
     xattr_set_filesize: Set ytdl.filesize user xattribute with expected size.
-                        (experimental)
     external_downloader_args:  A list of additional command-line arguments for the
     external_downloader_args:  A list of additional command-line arguments for the
                         external downloader.
                         external downloader.
     hls_use_mpegts:     Use the mpegts container for HLS videos.
     hls_use_mpegts:     Use the mpegts container for HLS videos.

+ 3 - 6
youtube_dl/extractor/common.py

@@ -339,20 +339,17 @@ class InfoExtractor(object):
     _GEO_BYPASS attribute may be set to False in order to disable
     _GEO_BYPASS attribute may be set to False in order to disable
     geo restriction bypass mechanisms for a particular extractor.
     geo restriction bypass mechanisms for a particular extractor.
     Though it won't disable explicit geo restriction bypass based on
     Though it won't disable explicit geo restriction bypass based on
-    country code provided with geo_bypass_country. (experimental)
+    country code provided with geo_bypass_country.
 
 
     _GEO_COUNTRIES attribute may contain a list of presumably geo unrestricted
     _GEO_COUNTRIES attribute may contain a list of presumably geo unrestricted
     countries for this extractor. One of these countries will be used by
     countries for this extractor. One of these countries will be used by
     geo restriction bypass mechanism right away in order to bypass
     geo restriction bypass mechanism right away in order to bypass
-    geo restriction, of course, if the mechanism is not disabled. (experimental)
+    geo restriction, of course, if the mechanism is not disabled.
 
 
     _GEO_IP_BLOCKS attribute may contain a list of presumably geo unrestricted
     _GEO_IP_BLOCKS attribute may contain a list of presumably geo unrestricted
     IP blocks in CIDR notation for this extractor. One of these IP blocks
     IP blocks in CIDR notation for this extractor. One of these IP blocks
     will be used by geo restriction bypass mechanism similarly
     will be used by geo restriction bypass mechanism similarly
-    to _GEO_COUNTRIES. (experimental)
-
-    NB: both these geo attributes are experimental and may change in future
-    or be completely removed.
+    to _GEO_COUNTRIES.
 
 
     Finally, the _WORKING attribute should be set to False for broken IEs
     Finally, the _WORKING attribute should be set to False for broken IEs
     in order to warn the users and skip the tests.
     in order to warn the users and skip the tests.

+ 6 - 6
youtube_dl/options.py

@@ -203,7 +203,7 @@ def parseOpts(overrideArguments=None):
     network.add_option(
     network.add_option(
         '--proxy', dest='proxy',
         '--proxy', dest='proxy',
         default=None, metavar='URL',
         default=None, metavar='URL',
-        help='Use the specified HTTP/HTTPS/SOCKS proxy. To enable experimental '
+        help='Use the specified HTTP/HTTPS/SOCKS proxy. To enable '
              'SOCKS proxy, specify a proper scheme. For example '
              'SOCKS proxy, specify a proper scheme. For example '
              'socks5://127.0.0.1:1080/. Pass in an empty string (--proxy "") '
              'socks5://127.0.0.1:1080/. Pass in an empty string (--proxy "") '
              'for direct connection')
              'for direct connection')
@@ -240,19 +240,19 @@ def parseOpts(overrideArguments=None):
     geo.add_option(
     geo.add_option(
         '--geo-bypass',
         '--geo-bypass',
         action='store_true', dest='geo_bypass', default=True,
         action='store_true', dest='geo_bypass', default=True,
-        help='Bypass geographic restriction via faking X-Forwarded-For HTTP header (experimental)')
+        help='Bypass geographic restriction via faking X-Forwarded-For HTTP header')
     geo.add_option(
     geo.add_option(
         '--no-geo-bypass',
         '--no-geo-bypass',
         action='store_false', dest='geo_bypass', default=True,
         action='store_false', dest='geo_bypass', default=True,
-        help='Do not bypass geographic restriction via faking X-Forwarded-For HTTP header (experimental)')
+        help='Do not bypass geographic restriction via faking X-Forwarded-For HTTP header')
     geo.add_option(
     geo.add_option(
         '--geo-bypass-country', metavar='CODE',
         '--geo-bypass-country', metavar='CODE',
         dest='geo_bypass_country', default=None,
         dest='geo_bypass_country', default=None,
-        help='Force bypass geographic restriction with explicitly provided two-letter ISO 3166-2 country code (experimental)')
+        help='Force bypass geographic restriction with explicitly provided two-letter ISO 3166-2 country code')
     geo.add_option(
     geo.add_option(
         '--geo-bypass-ip-block', metavar='IP_BLOCK',
         '--geo-bypass-ip-block', metavar='IP_BLOCK',
         dest='geo_bypass_ip_block', default=None,
         dest='geo_bypass_ip_block', default=None,
-        help='Force bypass geographic restriction with explicitly provided IP block in CIDR notation (experimental)')
+        help='Force bypass geographic restriction with explicitly provided IP block in CIDR notation')
 
 
     selection = optparse.OptionGroup(parser, 'Video Selection')
     selection = optparse.OptionGroup(parser, 'Video Selection')
     selection.add_option(
     selection.add_option(
@@ -502,7 +502,7 @@ def parseOpts(overrideArguments=None):
     downloader.add_option(
     downloader.add_option(
         '--xattr-set-filesize',
         '--xattr-set-filesize',
         dest='xattr_set_filesize', action='store_true',
         dest='xattr_set_filesize', action='store_true',
-        help='Set file xattribute ytdl.filesize with expected file size (experimental)')
+        help='Set file xattribute ytdl.filesize with expected file size')
     downloader.add_option(
     downloader.add_option(
         '--hls-prefer-native',
         '--hls-prefer-native',
         dest='hls_prefer_native', action='store_true', default=None,
         dest='hls_prefer_native', action='store_true', default=None,