1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-01 01:49:30 +00:00

[brightcove] Fix check for url in the result

It may have the ‘formats’ field instead of ‘url’.
This commit is contained in:
Jaime Marquínez Ferrándiz 2014-01-21 21:53:10 +01:00
parent bc4ba05fcb
commit d614aa40e3

View file

@ -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