mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-10 20:24:33 +01:00
[gorillavid] Add support for daclips.in (Closes #3213)
This commit is contained in:
parent
3dfd25b3aa
commit
953b358668
@ -12,7 +12,12 @@ from ..utils import (
|
|||||||
|
|
||||||
|
|
||||||
class GorillaVidIE(InfoExtractor):
|
class GorillaVidIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?gorillavid\.in/(?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)?'
|
IE_DESC = 'GorillaVid.in and daclips.in'
|
||||||
|
_VALID_URL = r'''(?x)
|
||||||
|
https?://(?:www\.)?
|
||||||
|
(?:daclips\.in|gorillavid\.in)/
|
||||||
|
(?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)?
|
||||||
|
'''
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://gorillavid.in/06y9juieqpmi',
|
'url': 'http://gorillavid.in/06y9juieqpmi',
|
||||||
@ -32,14 +37,20 @@ class GorillaVidIE(InfoExtractor):
|
|||||||
'title': 'Say something nice',
|
'title': 'Say something nice',
|
||||||
'thumbnail': 're:http://.*\.jpg',
|
'thumbnail': 're:http://.*\.jpg',
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'http://daclips.in/3rso4kdn6f9m',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '3rso4kdn6f9m',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Micro Pig piglets ready on 16th July 2009',
|
||||||
|
'thumbnail': 're:http://.*\.jpg',
|
||||||
|
},
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
video_id = mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
|
|
||||||
url = 'http://gorillavid.in/%s' % video_id
|
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
fields = dict(re.findall(r'''(?x)<input\s+
|
fields = dict(re.findall(r'''(?x)<input\s+
|
||||||
|
Loading…
Reference in New Issue
Block a user