mirror of https://github.com/yt-dlp/yt-dlp.git
[vimple] Extend _VALID_URL (Closes #10547)
This commit is contained in:
parent
7e5dc339de
commit
091624f9da
|
@ -28,9 +28,8 @@ class SprutoBaseIE(InfoExtractor):
|
||||||
|
|
||||||
class VimpleIE(SprutoBaseIE):
|
class VimpleIE(SprutoBaseIE):
|
||||||
IE_DESC = 'Vimple - one-click video hosting'
|
IE_DESC = 'Vimple - one-click video hosting'
|
||||||
_VALID_URL = r'https?://(?:player\.vimple\.ru/iframe|vimple\.ru)/(?P<id>[\da-f-]{32,36})'
|
_VALID_URL = r'https?://(?:player\.vimple\.(?:ru|co)/iframe|vimple\.(?:ru|co))/(?P<id>[\da-f-]{32,36})'
|
||||||
_TESTS = [
|
_TESTS = [{
|
||||||
{
|
|
||||||
'url': 'http://vimple.ru/c0f6b1687dcd4000a97ebe70068039cf',
|
'url': 'http://vimple.ru/c0f6b1687dcd4000a97ebe70068039cf',
|
||||||
'md5': '2e750a330ed211d3fd41821c6ad9a279',
|
'md5': '2e750a330ed211d3fd41821c6ad9a279',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
@ -43,8 +42,10 @@ class VimpleIE(SprutoBaseIE):
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://player.vimple.ru/iframe/52e1beec-1314-4a83-aeac-c61562eadbf9',
|
'url': 'http://player.vimple.ru/iframe/52e1beec-1314-4a83-aeac-c61562eadbf9',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}
|
}, {
|
||||||
]
|
'url': 'http://vimple.co/04506a053f124483b8fb05ed73899f19',
|
||||||
|
'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)
|
||||||
|
|
Loading…
Reference in New Issue