Browse Source

[gorillavid] Fix embedded videos extraction

totalwebcasting
Sergey M․ 11 years ago
parent
commit
aaefb347c0
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      youtube_dl/extractor/gorillavid.py

+ 4
- 3
youtube_dl/extractor/gorillavid.py View File

@ -14,8 +14,8 @@ from ..utils import (
class GorillaVidIE(InfoExtractor): class GorillaVidIE(InfoExtractor):
IE_DESC = 'GorillaVid.in and daclips.in' IE_DESC = 'GorillaVid.in and daclips.in'
_VALID_URL = r'''(?x) _VALID_URL = r'''(?x)
https?://(?:www\.)?
(?:daclips\.in|gorillavid\.in)/
https?://(?P<host>(?:www\.)?
(?:daclips\.in|gorillavid\.in))/
(?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)? (?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)?
''' '''
@ -39,6 +39,7 @@ class GorillaVidIE(InfoExtractor):
}, },
}, { }, {
'url': 'http://daclips.in/3rso4kdn6f9m', 'url': 'http://daclips.in/3rso4kdn6f9m',
'md5': '1ad8fd39bb976eeb66004d3a4895f106',
'info_dict': { 'info_dict': {
'id': '3rso4kdn6f9m', 'id': '3rso4kdn6f9m',
'ext': 'mp4', 'ext': 'mp4',
@ -51,7 +52,7 @@ class GorillaVidIE(InfoExtractor):
mobj = re.match(self._VALID_URL, url) mobj = re.match(self._VALID_URL, url)
video_id = mobj.group('id') video_id = mobj.group('id')
webpage = self._download_webpage(url, video_id)
webpage = self._download_webpage('http://%s/%s' % (mobj.group('host'), video_id), video_id)
fields = dict(re.findall(r'''(?x)<input\s+ fields = dict(re.findall(r'''(?x)<input\s+
type="hidden"\s+ type="hidden"\s+


Loading…
Cancel
Save