diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-17 12:09:12 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-17 12:09:12 +0100 |
commit | 85729c51afad484ef784faf5d82bad8acab77d5e (patch) | |
tree | d556af4c7f9fbfaf67cfc7cb3acc1cabc845dc86 /youtube_dl/__init__.py | |
parent | 1db5fbcfe3ef95654aa642ebe483fb070852cb49 (diff) |
[downloader] Add --hls-prefer-native to use the native HLS downloader (#4966)
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r-- | youtube_dl/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 108fb3c7a..eac2a26ec 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -351,6 +351,7 @@ def _real_main(argv=None): 'match_filter': match_filter, 'no_color': opts.no_color, 'ffmpeg_location': opts.ffmpeg_location, + 'hls_prefer_native': opts.hls_prefer_native, } with YoutubeDL(ydl_opts) as ydl: |