mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-10 04:52:29 +01:00
d570746e45
Supports only the nuevo player for now (most common). [trollvids] convert duration to an int [trollvids] added a test [trollvids] made flake8 shut up Generalized the Nuevo extractor Affects: anitube, trollvids, trutube [nuevo] Complied with the code comments.
34 lines
961 B
Python
34 lines
961 B
Python
from __future__ import unicode_literals
|
|
|
|
import re
|
|
|
|
from .nuevo import NuevoBaseIE
|
|
|
|
|
|
class AnitubeIE(NuevoBaseIE):
|
|
IE_NAME = 'anitube.se'
|
|
_VALID_URL = r'https?://(?:www\.)?anitube\.se/video/(?P<id>\d+)'
|
|
|
|
_TEST = {
|
|
'url': 'http://www.anitube.se/video/36621',
|
|
'md5': '59d0eeae28ea0bc8c05e7af429998d43',
|
|
'info_dict': {
|
|
'id': '36621',
|
|
'ext': 'mp4',
|
|
'title': 'Recorder to Randoseru 01',
|
|
'duration': 180.19,
|
|
},
|
|
'skip': 'Blocked in the US',
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
mobj = re.match(self._VALID_URL, url)
|
|
video_id = mobj.group('id')
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
key = self._search_regex(
|
|
r'src=["\']https?://[^/]+/embed/([A-Za-z0-9_-]+)', webpage, 'key')
|
|
|
|
config_url = 'http://www.anitube.se/nuevo/econfig.php?key=%s' % key
|
|
return self._extract_nuevo(config_url, video_id)
|