about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-10-21 23:57:23 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-10-21 23:57:23 +0200
commit8c3533ba976af15ca9fac8acd68547b195dc4e8a (patch)
tree1e1c9763a1ca4847b1d676eac6f21d524cceeb47
parent44d6dd08b299ccf17eb04901cf09a8d333769783 (diff)
downloadyoutube-dl-8c3533ba976af15ca9fac8acd68547b195dc4e8a.tar.gz
youtube-dl-8c3533ba976af15ca9fac8acd68547b195dc4e8a.tar.xz
youtube-dl-8c3533ba976af15ca9fac8acd68547b195dc4e8a.zip
[adultswim] Don't default to the native m3u8 downloader (closes #7243)
Some of the streams are encrypted, which is not supported .
-rw-r--r--youtube_dl/extractor/adultswim.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/adultswim.py b/youtube_dl/extractor/adultswim.py
index 130afe791..3ae618e71 100644
--- a/youtube_dl/extractor/adultswim.py
+++ b/youtube_dl/extractor/adultswim.py
@@ -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),