Browse Source

[dailymotion] Raise ExtractorError if the dailymotion response reports an error

rtmp_test
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
3a1d48d6de
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      youtube_dl/extractor/dailymotion.py

+ 3
- 0
youtube_dl/extractor/dailymotion.py View File

@ -63,6 +63,9 @@ class DailymotionIE(SubtitlesInfoExtractor):
info = self._search_regex(r'var info = ({.*?}),$', embed_page,
'video info', flags=re.MULTILINE)
info = json.loads(info)
if info.get('error') is not None:
msg = 'Couldn\'t get video, Dailymotion says: %s' % info['error']['title']
raise ExtractorError(msg, expected=True)
# TODO: support choosing qualities


Loading…
Cancel
Save