From cdd11c054013997b6f0053a3958b6e5b0aa698b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Tue, 10 Jan 2017 22:31:20 +0700 Subject: [PATCH] [mtv] Use native hls by default --- youtube_dl/extractor/mtv.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index d27c6686b..5250db212 100644 --- a/youtube_dl/extractor/mtv.py +++ b/youtube_dl/extractor/mtv.py @@ -90,7 +90,8 @@ class MTVServicesInfoExtractor(InfoExtractor): for rendition in mdoc.findall('.//rendition'): if rendition.get('method') == 'hls': hls_url = rendition.find('./src').text - formats.extend(self._extract_m3u8_formats(hls_url, video_id, ext='mp4')) + formats.extend(self._extract_m3u8_formats( + hls_url, video_id, ext='mp4', entry_protocol='m3u8_native')) else: # fms try: