mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-12 18:35:51 +00:00
[sportbox:embed] Add _extract_urls
This commit is contained in:
parent
3a7382950b
commit
1436a6835e
|
@ -91,6 +91,12 @@ class SportBoxEmbedIE(InfoExtractor):
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _extract_urls(webpage):
|
||||||
|
return re.findall(
|
||||||
|
r'<iframe[^>]+src="(https?://news\.sportbox\.ru/vdl/player[^"]+)"',
|
||||||
|
webpage)
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user