diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-05-23 04:22:09 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-05-23 04:22:09 +0600 |
commit | 5db9df622fb45ba6fbb57ef4a2ad5f2da0236a56 (patch) | |
tree | c71cc7a87e1dfe0030f8aa0e5bbab7fd51234fb4 /youtube_dl | |
parent | 5181759c0d488f9fc30175f6aff4b8d4a236352d (diff) |
[life:embed] Use native hls
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/lifenews.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/lifenews.py b/youtube_dl/extractor/lifenews.py index d5d528a36..c2b4490c4 100644 --- a/youtube_dl/extractor/lifenews.py +++ b/youtube_dl/extractor/lifenews.py @@ -188,7 +188,8 @@ class LifeEmbedIE(InfoExtractor): ext = determine_ext(video_url) if ext == 'm3u8': formats.extend(self._extract_m3u8_formats( - video_url, video_id, 'mp4', m3u8_id='m3u8')) + video_url, video_id, 'mp4', + entry_protocol='m3u8_native', m3u8_id='m3u8')) else: formats.append({ 'url': video_url, |