]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/anitube.py
1 from __future__
import unicode_literals
3 from .nuevo
import NuevoBaseIE
6 class AnitubeIE(NuevoBaseIE
):
8 _VALID_URL
= r
'https?://(?:www\.)?anitube\.se/video/(?P<id>\d+)'
11 'url': 'http://www.anitube.se/video/36621',
12 'md5': '59d0eeae28ea0bc8c05e7af429998d43',
16 'title': 'Recorder to Randoseru 01',
19 'skip': 'Blocked in the US',
22 def _real_extract(self
, url
):
23 video_id
= self
._match
_id
(url
)
25 webpage
= self
._download
_webpage
(url
, video_id
)
26 key
= self
._search
_regex
(
27 r
'src=["\']https?
://[^
/]+/embed
/([A
-Za
-z0
-9_-]+)', webpage, 'key
')
29 return self._extract_nuevo(
30 'http
://www
.anitube
.se
/nuevo
/econfig
.php?key
=%s' % key, video_id)