mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
Added an option to specify an output format for merges when downloading separate video & audio
This commit is contained in:
parent
754c838903
commit
d120e9013f
@ -302,6 +302,12 @@ def parseOpts(overrideArguments=None):
|
|||||||
'--youtube-skip-dash-manifest',
|
'--youtube-skip-dash-manifest',
|
||||||
action='store_false', dest='youtube_include_dash_manifest',
|
action='store_false', dest='youtube_include_dash_manifest',
|
||||||
help='Do not download the DASH manifest on YouTube videos')
|
help='Do not download the DASH manifest on YouTube videos')
|
||||||
|
video_format.add_option(
|
||||||
|
'--merge-output-format',
|
||||||
|
action='store', dest='merge_output_format', metavar='FORMAT' ,default=None,
|
||||||
|
help=(
|
||||||
|
'If a merge is required (e.g. bestvideo+bestaudio), output to given container format (e.g. mkv, mp4, ogg, webm, flv) '
|
||||||
|
'Ignored if no merge is required'))
|
||||||
|
|
||||||
subtitles = optparse.OptionGroup(parser, 'Subtitle Options')
|
subtitles = optparse.OptionGroup(parser, 'Subtitle Options')
|
||||||
subtitles.add_option(
|
subtitles.add_option(
|
||||||
|
Loading…
Reference in New Issue
Block a user