diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-04-21 23:02:17 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-04-21 23:02:17 +0600 |
commit | bf09af3acbafd37e8327b8bab118066bd4c23d31 (patch) | |
tree | 071cf417d741ff9b1d648db3a9765fdcf76e826c /youtube_dl/YoutubeDL.py | |
parent | 88296ac326694b8da0f6815efbab988ff6134405 (diff) |
Add --hls-prefer-ffmpeg
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index a89a71a25..055433362 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -260,7 +260,9 @@ class YoutubeDL(object): The following options determine which downloader is picked: external_downloader: Executable of the external downloader to call. None or unset for standard (built-in) downloader. - hls_prefer_native: Use the native HLS downloader instead of ffmpeg/avconv. + hls_prefer_native: Use the native HLS downloader instead of ffmpeg/avconv + if True, otherwise use ffmpeg/avconv if False, otherwise + use downloader suggested by extractor if None. The following parameters are not used by YoutubeDL itself, they are used by the downloader (see youtube_dl/downloader/common.py): |