[adultswim] Don't default to the native m3u8 downloader (closes #7243)

Some of the streams are encrypted, which is not supported .
This commit is contained in:
Jaime Marquínez Ferrándiz 2015-10-21 23:57:23 +02:00
parent 44d6dd08b2
commit 8c3533ba97
1 changed files with 1 additions and 1 deletions

View 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),