diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-06-09 04:09:32 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-06-09 04:09:32 +0700 |
commit | a479b8f687245a9cb1b5c25ed9ece28c4710981f (patch) | |
tree | 916f59e6e283ced4c3778c57f5510451f64ec62e /youtube_dl/extractor | |
parent | 48a5eabc487058ccaa1076b74ad9106fc6019955 (diff) |
[vessel] Use native hls by default
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/vessel.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vessel.py b/youtube_dl/extractor/vessel.py index e027c018b..59f2b4ba4 100644 --- a/youtube_dl/extractor/vessel.py +++ b/youtube_dl/extractor/vessel.py @@ -113,7 +113,8 @@ class VesselIE(InfoExtractor): continue if f.get('name') == 'hls-index': formats.extend(self._extract_m3u8_formats( - location, video_id, ext='mp4', m3u8_id='m3u8')) + location, video_id, ext='mp4', + entry_protocol='m3u8_native', m3u8_id='m3u8')) else: formats.append({ 'format_id': f.get('name'), |