raise unexpected error when no stream found

totalwebcasting
Remita Amine 8 years ago
parent f70e9229e6
commit 5c13c28566

@ -162,11 +162,12 @@ class AdultSwimIE(InfoExtractor):
elif video_info.get('videoPlaybackID'): elif video_info.get('videoPlaybackID'):
segment_ids = [video_info['videoPlaybackID']] segment_ids = [video_info['videoPlaybackID']]
else: else:
raise ExtractorError( if video_info.get('auth') is True:
'This video is only available via cable service provider subscription that' raise ExtractorError(
' is not currently supported. You may want to use --cookies.' 'This video is only available via cable service provider subscription that'
if video_info.get('auth') is True else 'Unable to find stream or clips', ' is not currently supported. You may want to use --cookies.', expected=True)
expected=True) else:
raise ExtractorError('Unable to find stream or clips')
episode_id = video_info['id'] episode_id = video_info['id']
episode_title = video_info['title'] episode_title = video_info['title']

@ -56,11 +56,12 @@ class DiscoveryGoIE(InfoExtractor):
stream = video.get('stream') stream = video.get('stream')
if not stream: if not stream:
raise ExtractorError( if video.get('authenticated') is True:
'This video is only available via cable service provider subscription that' raise ExtractorError(
' is not currently supported. You may want to use --cookies.' 'This video is only available via cable service provider subscription that'
if video.get('authenticated') is True else 'Unable to find stream', ' is not currently supported. You may want to use --cookies.', expected=True)
expected=True) else:
raise ExtractorError('Unable to find stream')
STREAM_URL_SUFFIX = 'streamUrl' STREAM_URL_SUFFIX = 'streamUrl'
formats = [] formats = []
for stream_kind in ('', 'hds'): for stream_kind in ('', 'hds'):

Loading…
Cancel
Save