mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 19:52:40 +01:00
[go90] add support for embed urls(closes #16873)
This commit is contained in:
parent
8cee692b8b
commit
db5debf313
@ -15,8 +15,8 @@
|
|||||||
|
|
||||||
|
|
||||||
class Go90IE(InfoExtractor):
|
class Go90IE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?go90\.com/videos/(?P<id>[0-9a-zA-Z]+)'
|
_VALID_URL = r'https?://(?:www\.)?go90\.com/(?:videos|embed)/(?P<id>[0-9a-zA-Z]+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'https://www.go90.com/videos/84BUqjLpf9D',
|
'url': 'https://www.go90.com/videos/84BUqjLpf9D',
|
||||||
'md5': 'efa7670dbbbf21a7b07b360652b24a32',
|
'md5': 'efa7670dbbbf21a7b07b360652b24a32',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -28,7 +28,10 @@ class Go90IE(InfoExtractor):
|
|||||||
'upload_date': '20170411',
|
'upload_date': '20170411',
|
||||||
'age_limit': 14,
|
'age_limit': 14,
|
||||||
}
|
}
|
||||||
}
|
}, {
|
||||||
|
'url': 'https://www.go90.com/embed/261MflWkD3N',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
_GEO_BYPASS = False
|
_GEO_BYPASS = False
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
Loading…
Reference in New Issue
Block a user