Add various anime sites (Closes #4554)
This commit is contained in:
parent
19b05d886e
commit
b68ff25917
6 changed files with 355 additions and 0 deletions
149
youtube_dl/extractor/play44.py
Normal file
149
youtube_dl/extractor/play44.py
Normal file
|
@ -0,0 +1,149 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from .common import InfoExtractor
|
||||
from ..utils import (
|
||||
compat_urllib_parse
|
||||
)
|
||||
|
||||
|
||||
class Play44IE(InfoExtractor):
|
||||
_VALID_URL = r'http://[w.]*play44\.net/embed\.php[^/]*/(?P<id>.+)'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'http://play44.net/embed.php?w=600&h=438&vid=M/mahou-shoujo-madoka-magica-07.flv',
|
||||
'md5': 'e37e99d665f503dd2db952f7c4dba9e6',
|
||||
'info_dict': {
|
||||
'id': 'mahou-shoujo-madoka-magica-07',
|
||||
'ext': 'flv',
|
||||
'title': 'mahou-shoujo-madoka-magica-07',
|
||||
}
|
||||
}]
|
||||
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
page = self._download_webpage(url, video_id)
|
||||
|
||||
video_url = compat_urllib_parse.unquote(self._html_search_regex(
|
||||
r'_url = "(https?://[^"]+?)";', page, 'url'))
|
||||
title = self._search_regex(r'.*/(?P<title>[^.]*).', video_url, 'title')
|
||||
|
||||
return {
|
||||
'id': title,
|
||||
'url': video_url,
|
||||
'title': title,
|
||||
}
|
||||
|
||||
|
||||
class ByZooIE(Play44IE):
|
||||
_VALID_URL = r'http://[w.]*byzoo\.org/embed\.php[^/]*/(?P<id>.+)'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'http://byzoo.org/embed.php?w=600&h=438&vid=at/nw/mahou_shoujo_madoka_magica_movie_3_-_part1.mp4',
|
||||
'md5': '455c83dabe2cd9fd74a87612b01fe017',
|
||||
'info_dict': {
|
||||
'id': 'mahou_shoujo_madoka_magica_movie_3_-_part1',
|
||||
'ext': 'mp4',
|
||||
'title': 'mahou_shoujo_madoka_magica_movie_3_-_part1',
|
||||
}
|
||||
}]
|
||||
|
||||
|
||||
class Video44IE(Play44IE):
|
||||
_VALID_URL = r'http://[w.]*video44\.net/.*file=(?P<id>[^&].).*'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'http://www.video44.net/gogo/?w=600&h=438&file=chaoshead-12.flv&sv=1',
|
||||
'md5': '43eaec6d0beb10e8d42459b9f108aff3',
|
||||
'info_dict': {
|
||||
'id': 'chaoshead-12',
|
||||
'ext': 'mp4',
|
||||
'title': 'chaoshead-12',
|
||||
}
|
||||
}]
|
||||
|
||||
|
||||
class VideoWingIE(Play44IE):
|
||||
_VALID_URL = r'''(?x)
|
||||
http://[w.]*videowing\.[^/]*/
|
||||
(?:
|
||||
.*video=/*
|
||||
|embed/
|
||||
)
|
||||
(?P<id>[^&?.]+)
|
||||
'''
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'http://videowing.me/embed?w=718&h=438&video=ongoing/boku_wa_tomodachi_ga_sukunai_-_05.mp4',
|
||||
'md5': '4ed320e353ed26c742c4f12a9c210b60',
|
||||
'info_dict': {
|
||||
'id': 'boku_wa_tomodachi_ga_sukunai_-_05',
|
||||
'ext': 'mp4',
|
||||
'title': 'boku_wa_tomodachi_ga_sukunai_-_05',
|
||||
}
|
||||
}, {
|
||||
'url': 'http://videowing.me/embed/a8d6a39522df066bd734a69f2334497e?w=600&h=438',
|
||||
'md5': '33fdd71581357018c226f95c5cedcfd7',
|
||||
'info_dict': {
|
||||
'id': 'mahoushoujomadokamagicamovie1part1',
|
||||
'ext': 'flv',
|
||||
'title': 'mahoushoujomadokamagicamovie1part1',
|
||||
}
|
||||
}]
|
||||
|
||||
|
||||
class PlayPandaIE(Play44IE):
|
||||
_VALID_URL = r'http://[w.]*playpanda\.[^/]*/.*vid=/*(?P<id>[^&].).*'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'http://playpanda.net/embed.php?w=718&h=438&vid=at/nw/boku_wa_tomodachi_ga_sukunai_-_05.mp4',
|
||||
'md5': '4ed320e353ed26c742c4f12a9c210b60',
|
||||
'info_dict': {
|
||||
'id': 'boku_wa_tomodachi_ga_sukunai_-_05',
|
||||
'ext': 'mp4',
|
||||
'title': 'boku_wa_tomodachi_ga_sukunai_-_05',
|
||||
'description': 'boku_wa_tomodachi_ga_sukunai_-_05'
|
||||
}
|
||||
}]
|
||||
|
||||
|
||||
class VideoZooIE(Play44IE):
|
||||
_VALID_URL = r'http://[w.]*videozoo\.[^/]*/.*vid=/*(?P<id>[^&].).*'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'http://videozoo.me/embed.php?w=718&h=438&vid=at/nw/boku_wa_tomodachi_ga_sukunai_-_05.mp4',
|
||||
'md5': '4ed320e353ed26c742c4f12a9c210b60',
|
||||
'info_dict': {
|
||||
'id': 'boku_wa_tomodachi_ga_sukunai_-_05',
|
||||
'ext': 'mp4',
|
||||
'title': 'boku_wa_tomodachi_ga_sukunai_-_05',
|
||||
}
|
||||
}]
|
||||
|
||||
|
||||
class PlayBBIE(Play44IE):
|
||||
_VALID_URL = r'http://[w.]*playbb\.[^/]*/.*vid=/*(?P<id>[^&].).*'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'http://playbb.me/embed.php?w=718&h=438&vid=at/nw/boku_wa_tomodachi_ga_sukunai_-_05.mp4',
|
||||
'md5': '4ed320e353ed26c742c4f12a9c210b60',
|
||||
'info_dict': {
|
||||
'id': 'boku_wa_tomodachi_ga_sukunai_-_05',
|
||||
'ext': 'mp4',
|
||||
'title': 'boku_wa_tomodachi_ga_sukunai_-_05',
|
||||
}
|
||||
}]
|
||||
|
||||
|
||||
class EasyVideoIE(Play44IE):
|
||||
_VALID_URL = r'http://[w.]*easyvideo\.[^/]*/.*file=/*(?P<id>[^&.]+)'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'http://easyvideo.me/gogo/?w=718&h=438&file=bokuwatomodachigasukunai-04.flv&sv=1',
|
||||
'md5': '26178b57629b7650106d72b191137176',
|
||||
'info_dict': {
|
||||
'id': 'bokuwatomodachigasukunai-04',
|
||||
'ext': 'mp4',
|
||||
'title': 'bokuwatomodachigasukunai-04',
|
||||
},
|
||||
'skip': 'Blocked in Germany',
|
||||
}]
|
Loading…
Add table
Add a link
Reference in a new issue