mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[brightcove] Fix check for url in the result
It may have the ‘formats’ field instead of ‘url’.
This commit is contained in:
parent
bc4ba05fcb
commit
d614aa40e3
1 changed files with 1 additions and 1 deletions
|
@ -230,6 +230,6 @@ def _extract_video_info(self, video_info):
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue