aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/options.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-04-21 23:02:17 +0600
committerSergey M․ <dstftw@gmail.com>2016-04-21 23:02:17 +0600
commitbf09af3acbafd37e8327b8bab118066bd4c23d31 (patch)
tree071cf417d741ff9b1d648db3a9765fdcf76e826c /youtube_dl/options.py
parent88296ac326694b8da0f6815efbab988ff6134405 (diff)
downloadyoutube-dl-bf09af3acbafd37e8327b8bab118066bd4c23d31.zip
youtube-dl-bf09af3acbafd37e8327b8bab118066bd4c23d31.tar.gz
youtube-dl-bf09af3acbafd37e8327b8bab118066bd4c23d31.tar.bz2
Add --hls-prefer-ffmpeg
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r--youtube_dl/options.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py
index b60a723..d1f8d13 100644
--- a/youtube_dl/options.py
+++ b/youtube_dl/options.py
@@ -425,9 +425,13 @@ def parseOpts(overrideArguments=None):
help='Set file xattribute ytdl.filesize with expected filesize (experimental)')
downloader.add_option(
'--hls-prefer-native',
- dest='hls_prefer_native', action='store_true',
+ dest='hls_prefer_native', action='store_true', default=None,
help='Use the native HLS downloader instead of ffmpeg')
downloader.add_option(
+ '--hls-prefer-ffmpeg',
+ dest='hls_prefer_native', action='store_false', default=None,
+ help='Use ffmpeg instead of the native HLS downloader')
+ downloader.add_option(
'--hls-use-mpegts',
dest='hls_use_mpegts', action='store_true',
help='Use the mpegts container for HLS videos, allowing to play the '