|
@ -29,8 +29,8 @@ from .common import InfoExtractor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CrunchyrollIE(SubtitlesInfoExtractor): |
|
|
class CrunchyrollIE(SubtitlesInfoExtractor): |
|
|
_VALID_URL = r'https?://(?:(?P<prefix>www|m)\.)?(?P<url>crunchyroll\.com/(?:[^/]*/[^/?&]*?|media/\?id=)(?P<video_id>[0-9]+))(?:[/?&]|$)' |
|
|
|
|
|
_TEST = { |
|
|
|
|
|
|
|
|
_VALID_URL = r'https?://(?:(?P<prefix>www|m)\.)?(?P<url>crunchyroll\.(?:com|fr)/(?:[^/]*/[^/?&]*?|media/\?id=)(?P<video_id>[0-9]+))(?:[/?&]|$)' |
|
|
|
|
|
_TESTS = [{ |
|
|
'url': 'http://www.crunchyroll.com/wanna-be-the-strongest-in-the-world/episode-1-an-idol-wrestler-is-born-645513', |
|
|
'url': 'http://www.crunchyroll.com/wanna-be-the-strongest-in-the-world/episode-1-an-idol-wrestler-is-born-645513', |
|
|
'info_dict': { |
|
|
'info_dict': { |
|
|
'id': '645513', |
|
|
'id': '645513', |
|
@ -46,7 +46,10 @@ class CrunchyrollIE(SubtitlesInfoExtractor): |
|
|
# rtmp |
|
|
# rtmp |
|
|
'skip_download': True, |
|
|
'skip_download': True, |
|
|
}, |
|
|
}, |
|
|
} |
|
|
|
|
|
|
|
|
}, { |
|
|
|
|
|
'url': 'http://www.crunchyroll.fr/girl-friend-beta/episode-11-goodbye-la-mode-661697', |
|
|
|
|
|
'only_matching': True, |
|
|
|
|
|
}] |
|
|
|
|
|
|
|
|
_FORMAT_IDS = { |
|
|
_FORMAT_IDS = { |
|
|
'360': ('60', '106'), |
|
|
'360': ('60', '106'), |
|
|