diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-01-21 21:53:10 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-01-21 21:53:10 +0100 |
commit | d614aa40e35825e1cde7c92fc6092d226afe4898 (patch) | |
tree | 9dc2ede393f6c6013d1c9365a64173b3b7dab897 /youtube_dl/extractor/brightcove.py | |
parent | bc4ba05fcbb20dfead6796b0878427b51c9f150a (diff) |
[brightcove] Fix check for url in the result
It may have the ‘formats’ field instead of ‘url’.
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r-- | youtube_dl/extractor/brightcove.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py index b873dc0d4..e13c040f8 100644 --- a/youtube_dl/extractor/brightcove.py +++ b/youtube_dl/extractor/brightcove.py @@ -230,6 +230,6 @@ class BrightcoveIE(InfoExtractor): else: return ad_info - if 'url' not in info: + if 'url' not in info and not info.get('formats'): raise ExtractorError('Unable to extract video url for %s' % info['id']) return info |