[adultswim] Clarify no media message
authorSergey M․ <dstftw@gmail.com>
Sat, 10 Oct 2015 19:04:41 +0000 (01:04 +0600)
committerSergey M․ <dstftw@gmail.com>
Sat, 10 Oct 2015 19:04:41 +0000 (01:04 +0600)
youtube_dl/extractor/adultswim.py

index 35606878db65f69b528b04d1baca0bc582ab3b45..130afe791b49ca6791d4e86fe2b38ed79a677acd 100644 (file)
@@ -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']