X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fadultswim.py;h=3ae618e71b807b403f298b6b0c0d7919bb98a364;hb=c683454e7e35a67a901526071136f8932adab3ea;hp=35606878db65f69b528b04d1baca0bc582ab3b45;hpb=00cde0b8dc3a534a929b88da086cc540dc212ea4;p=youtube-dl diff --git a/youtube_dl/extractor/adultswim.py b/youtube_dl/extractor/adultswim.py index 35606878d..3ae618e71 100644 --- a/youtube_dl/extractor/adultswim.py +++ b/youtube_dl/extractor/adultswim.py @@ -137,10 +137,11 @@ class AdultSwimIE(InfoExtractor): stream = video_info.get('stream') clips = [stream] if stream else video_info.get('clips') if not clips: - if video_info.get('auth'): - raise ExtractorError('This video is only available for registered users', expected=True) - else: - raise ExtractorError('Unable to find clips') + raise ExtractorError( + 'This video is only available via cable service provider subscription that' + ' is not currently supported. You may want to use --cookies.' + if video_info.get('auth') is True else 'Unable to find stream or clips', + expected=True) segment_ids = [clip['videoPlaybackID'] for clip in clips] episode_id = video_info['id'] @@ -182,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),