youtube-dl

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

commit a479b8f687245a9cb1b5c25ed9ece28c4710981f
parent 48a5eabc487058ccaa1076b74ad9106fc6019955
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu,  9 Jun 2016 04:09:32 +0700

[vessel] Use native hls by default

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

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