aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dlc/options.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan@gmail.com>2021-02-24 21:31:01 +0530
committerpukkandan <pukkandan@gmail.com>2021-02-24 21:33:02 +0530
commite409895f13f3985639562fdb566b36c28d02370a (patch)
treeab9e0d21f89b70af8c58a9c60bc16204dd7d26b7 /youtube_dlc/options.py
parent310c2ed2c648f4e1254e27d0e8901d629828b2ba (diff)
downloadhypervideo-pre-e409895f13f3985639562fdb566b36c28d02370a.tar.lz
hypervideo-pre-e409895f13f3985639562fdb566b36c28d02370a.tar.xz
hypervideo-pre-e409895f13f3985639562fdb566b36c28d02370a.zip
[documentation] Fix documentation of "Extractor Options"
Diffstat (limited to 'youtube_dlc/options.py')
-rw-r--r--youtube_dlc/options.py32
1 files changed, 16 insertions, 16 deletions
diff --git a/youtube_dlc/options.py b/youtube_dlc/options.py
index 47349f928..f2f9dd9dd 100644
--- a/youtube_dlc/options.py
+++ b/youtube_dlc/options.py
@@ -505,22 +505,6 @@ def parseOpts(overrideArguments=None):
action='store_false', dest='listformats_table',
help='Present the output of -F in the old form (Alias: --no-list-formats-as-table)')
video_format.add_option(
- '--youtube-include-dash-manifest', '--no-youtube-skip-dash-manifest',
- action='store_true', dest='youtube_include_dash_manifest', default=True,
- help='Download the DASH manifests and related data on YouTube videos (default) (Alias: --no-youtube-skip-dash-manifest)')
- video_format.add_option(
- '--youtube-skip-dash-manifest', '--no-youtube-include-dash-manifest',
- action='store_false', dest='youtube_include_dash_manifest',
- help='Do not download the DASH manifests and related data on YouTube videos (Alias: --no-youtube-include-dash-manifest)')
- video_format.add_option(
- '--youtube-include-hls-manifest', '--no-youtube-skip-hls-manifest',
- action='store_true', dest='youtube_include_hls_manifest', default=True,
- help='Download the HLS manifests and related data on YouTube videos (default) (Alias: --no-youtube-skip-hls-manifest)')
- video_format.add_option(
- '--youtube-skip-hls-manifest', '--no-youtube-include-hls-manifest',
- action='store_false', dest='youtube_include_hls_manifest',
- help='Do not download the HLS manifests and related data on YouTube videos (Alias: --no-youtube-include-hls-manifest)')
- video_format.add_option(
'--merge-output-format',
action='store', dest='merge_output_format', metavar='FORMAT', default=None,
help=(
@@ -1235,6 +1219,22 @@ def parseOpts(overrideArguments=None):
'--no-hls-split-discontinuity',
dest='hls_split_discontinuity', action='store_false',
help='Do not split HLS playlists to different formats at discontinuities such as ad breaks (default)')
+ extractor.add_option(
+ '--youtube-include-dash-manifest', '--no-youtube-skip-dash-manifest',
+ action='store_true', dest='youtube_include_dash_manifest', default=True,
+ help='Download the DASH manifests and related data on YouTube videos (default) (Alias: --no-youtube-skip-dash-manifest)')
+ extractor.add_option(
+ '--youtube-skip-dash-manifest', '--no-youtube-include-dash-manifest',
+ action='store_false', dest='youtube_include_dash_manifest',
+ help='Do not download the DASH manifests and related data on YouTube videos (Alias: --no-youtube-include-dash-manifest)')
+ extractor.add_option(
+ '--youtube-include-hls-manifest', '--no-youtube-skip-hls-manifest',
+ action='store_true', dest='youtube_include_hls_manifest', default=True,
+ help='Download the HLS manifests and related data on YouTube videos (default) (Alias: --no-youtube-skip-hls-manifest)')
+ extractor.add_option(
+ '--youtube-skip-hls-manifest', '--no-youtube-include-hls-manifest',
+ action='store_false', dest='youtube_include_hls_manifest',
+ help='Do not download the HLS manifests and related data on YouTube videos (Alias: --no-youtube-include-hls-manifest)')
parser.add_option_group(general)
parser.add_option_group(network)