mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[engadget] Relax _VALID_URL
This commit is contained in:
parent
2396062c74
commit
52e7fcfeb7
@ -4,9 +4,10 @@
|
|||||||
|
|
||||||
|
|
||||||
class EngadgetIE(InfoExtractor):
|
class EngadgetIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://www.engadget.com/video/(?P<id>\d+)'
|
_VALID_URL = r'https?://www.engadget.com/video/(?P<id>[^/?#]+)'
|
||||||
|
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
|
# video with 5min ID
|
||||||
'url': 'http://www.engadget.com/video/518153925/',
|
'url': 'http://www.engadget.com/video/518153925/',
|
||||||
'md5': 'c6820d4828a5064447a4d9fc73f312c9',
|
'md5': 'c6820d4828a5064447a4d9fc73f312c9',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -15,8 +16,12 @@ class EngadgetIE(InfoExtractor):
|
|||||||
'title': 'Samsung Galaxy Tab Pro 8.4 Review',
|
'title': 'Samsung Galaxy Tab Pro 8.4 Review',
|
||||||
},
|
},
|
||||||
'add_ie': ['FiveMin'],
|
'add_ie': ['FiveMin'],
|
||||||
}
|
}, {
|
||||||
|
# video with vidible ID
|
||||||
|
'url': 'https://www.engadget.com/video/57a28462134aa15a39f0421a/',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
return self.url_result('5min:%s' % video_id)
|
return self.url_result('aol-video:%s' % video_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user