[adultswim] Don't default to the native m3u8 downloader (closes #7243)
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Wed, 21 Oct 2015 21:57:23 +0000 (23:57 +0200)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Wed, 21 Oct 2015 21:57:23 +0000 (23:57 +0200)
Some of the streams are encrypted, which is not supported .

youtube_dl/extractor/adultswim.py

index 130afe791b49ca6791d4e86fe2b38ed79a677acd..3ae618e71b807b403f298b6b0c0d7919bb98a364 100644 (file)
@@ -183,7 +183,7 @@ class AdultSwimIE(InfoExtractor):
                 media_url = file_el.text
                 if determine_ext(media_url) == 'm3u8':
                     formats.extend(self._extract_m3u8_formats(
-                        media_url, segment_title, 'mp4', 'm3u8_native', preference=0, m3u8_id='hls'))
+                        media_url, segment_title, 'mp4', preference=0, m3u8_id='hls'))
                 else:
                     formats.append({
                         'format_id': '%s_%s' % (bitrate, ftype),