youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 5db9df622fb45ba6fbb57ef4a2ad5f2da0236a56
parent 5181759c0d488f9fc30175f6aff4b8d4a236352d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 23 May 2016 04:22:09 +0600

[life:embed] Use native hls

Diffstat:
Myoutube_dl/extractor/lifenews.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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,