Skip to content

Commit

Permalink
raise unexpected error when no stream found
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed Aug 25, 2016
1 parent f70e922 commit 5c13c28
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions youtube_dl/extractor/adultswim.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,12 @@ def _real_extract(self, url):
elif video_info.get('videoPlaybackID'):
segment_ids = [video_info['videoPlaybackID']]
else:
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)
if video_info.get('auth') is True:
raise ExtractorError(
'This video is only available via cable service provider subscription that'
' is not currently supported. You may want to use --cookies.', expected=True)
else:
raise ExtractorError('Unable to find stream or clips')

episode_id = video_info['id']
episode_title = video_info['title']
Expand Down
11 changes: 6 additions & 5 deletions youtube_dl/extractor/discoverygo.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ def _real_extract(self, url):

stream = video.get('stream')
if not stream:
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.get('authenticated') is True else 'Unable to find stream',
expected=True)
if video.get('authenticated') is True:
raise ExtractorError(
'This video is only available via cable service provider subscription that'
' is not currently supported. You may want to use --cookies.', expected=True)
else:
raise ExtractorError('Unable to find stream')
STREAM_URL_SUFFIX = 'streamUrl'
formats = []
for stream_kind in ('', 'hds'):
Expand Down

0 comments on commit 5c13c28

Please sign in to comment.