summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-21 21:53:10 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-21 21:53:10 +0100
commitd614aa40e35825e1cde7c92fc6092d226afe4898 (patch)
tree9dc2ede393f6c6013d1c9365a64173b3b7dab897
parentbc4ba05fcbb20dfead6796b0878427b51c9f150a (diff)
downloadyoutube-dl-d614aa40e35825e1cde7c92fc6092d226afe4898.tar.gz
youtube-dl-d614aa40e35825e1cde7c92fc6092d226afe4898.tar.xz
youtube-dl-d614aa40e35825e1cde7c92fc6092d226afe4898.zip
[brightcove] Fix check for url in the result
It may have the ‘formats’ field instead of ‘url’.
-rw-r--r--youtube_dl/extractor/brightcove.py2
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