Browse Source

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

Some of the streams are encrypted, which is not supported .
totalwebcasting
Jaime Marquínez Ferrándiz 9 years ago
parent
commit
8c3533ba97
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/adultswim.py

+ 1
- 1
youtube_dl/extractor/adultswim.py 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),


Loading…
Cancel
Save