mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 18:22:37 +01:00
[breakcom] Fix error when calling _search_regex
I passed `’webpage’` instead of the variable `webpage`.
This commit is contained in:
parent
a25f2f990a
commit
9b77f951c7
@ -24,7 +24,7 @@ def _real_extract(self, url):
|
|||||||
embed_url = 'http://www.break.com/embed/%s' % video_id
|
embed_url = 'http://www.break.com/embed/%s' % video_id
|
||||||
webpage = self._download_webpage(embed_url, video_id)
|
webpage = self._download_webpage(embed_url, video_id)
|
||||||
info_json = self._search_regex(r'var embedVars = ({.*})\s*?</script>',
|
info_json = self._search_regex(r'var embedVars = ({.*})\s*?</script>',
|
||||||
'webpage', 'info json', flags=re.DOTALL)
|
webpage, 'info json', flags=re.DOTALL)
|
||||||
info = json.loads(info_json)
|
info = json.loads(info_json)
|
||||||
video_url = info['videoUri']
|
video_url = info['videoUri']
|
||||||
m_youtube = re.search(r'(https?://www\.youtube\.com/watch\?v=.*)', video_url)
|
m_youtube = re.search(r'(https?://www\.youtube\.com/watch\?v=.*)', video_url)
|
||||||
|
Loading…
Reference in New Issue
Block a user