4 changed files with 41 additions and 61 deletions
Unified View
Diff Options
-
9youtube_dl/extractor/anitube.py
-
25youtube_dl/extractor/nuevo.py
-
55youtube_dl/extractor/trollvids.py
-
13youtube_dl/extractor/trutube.py
@ -1,49 +1,36 @@ |
|||||
# encoding: utf-8 |
# encoding: utf-8 |
||||
from __future__ import unicode_literals |
from __future__ import unicode_literals |
||||
|
|
||||
from .nuevo import NuevoBaseIE |
|
||||
|
|
||||
from ..compat import ( |
|
||||
compat_urllib_parse_unquote |
|
||||
) |
|
||||
|
|
||||
import re |
import re |
||||
|
|
||||
|
from .nuevo import NuevoBaseIE |
||||
|
|
||||
|
|
||||
class TrollvidsIE(NuevoBaseIE): |
class TrollvidsIE(NuevoBaseIE): |
||||
_VALID_URL = r'http://(?:www\.)?trollvids\.com/+video/+(?P<id>[0-9]+)/+(?P<title>[^?&]+)' |
|
||||
|
_VALID_URL = r'http://(?:www\.)?trollvids\.com/video/(?P<id>\d+)/(?P<display_id>[^/?#&]+)' |
||||
IE_NAME = 'trollvids' |
IE_NAME = 'trollvids' |
||||
|
_TEST = { |
||||
|
'url': 'http://trollvids.com/video/2349002/%E3%80%90MMD-R-18%E3%80%91%E3%82%AC%E3%83%BC%E3%83%AB%E3%83%95%E3%83%AC%E3%83%B3%E3%83%89-carrymeoff', |
||||
|
'md5': '1d53866b2c514b23ed69e4352fdc9839', |
||||
|
'info_dict': { |
||||
|
'id': '2349002', |
||||
|
'ext': 'mp4', |
||||
|
'title': '【MMD R-18】ガールフレンド carry_me_off', |
||||
|
'age_limit': 18, |
||||
|
'duration': 216.78, |
||||
|
}, |
||||
|
} |
||||
|
|
||||
def _real_extract(self, url): |
def _real_extract(self, url): |
||||
match = re.match(self._VALID_URL, url) |
|
||||
|
|
||||
video_id = match.group('id') |
|
||||
raw_video_title = match.group('title') |
|
||||
url = 'http://trollvids.com/video/%s/%s' % (video_id, raw_video_title) |
|
||||
config_url = 'http://trollvids.com/nuevo/player/config.php?v=%s' % video_id |
|
||||
|
|
||||
info = self._extract_nuevo(config_url, video_id) |
|
||||
|
mobj = re.match(self._VALID_URL, url) |
||||
|
video_id = mobj.group('id') |
||||
|
display_id = mobj.group('display_id') |
||||
|
|
||||
|
info = self._extract_nuevo( |
||||
|
'http://trollvids.com/nuevo/player/config.php?v=%s' % video_id, |
||||
|
video_id) |
||||
info.update({ |
info.update({ |
||||
'webpage_url': url, |
|
||||
|
'display_id': display_id, |
||||
'age_limit': 18 |
'age_limit': 18 |
||||
}) |
}) |
||||
|
|
||||
if 'title' not in info: |
|
||||
info['title'] = compat_urllib_parse_unquote(raw_video_title) |
|
||||
|
|
||||
return info |
return info |
||||
|
|
||||
_TESTS = [ |
|
||||
{ |
|
||||
'url': 'http://trollvids.com/video/2349002/%E3%80%90MMD-R-18%E3%80%91%E3%82%AC%E3%83%BC%E3%83%AB%E3%83%95%E3%83%AC%E3%83%B3%E3%83%89-carrymeoff', |
|
||||
'md5': '1d53866b2c514b23ed69e4352fdc9839', |
|
||||
'info_dict': { |
|
||||
'id': '2349002', |
|
||||
'ext': 'mp4', |
|
||||
'title': "【MMD R-18】ガールフレンド carry_me_off", |
|
||||
'age_limit': 18, |
|
||||
'duration': 216.78, |
|
||||
}, |
|
||||
}, |
|
||||
] |
|
Write
Preview
Loading…
Cancel
Save