1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
10 compat_urllib_parse_urlparse
,
17 class AddAnimeIE(InfoExtractor
):
18 _VALID_URL
= r
'^http://(?:\w+\.)?add-anime\.net/watch_video\.php\?(?:.*?)v=(?P<id>[\w_]+)(?:.*)'
20 'url': 'http://www.add-anime.net/watch_video.php?v=24MR3YO5SAS9',
21 'md5': '72954ea10bc979ab5e2eb288b21425a0',
25 'description': 'One Piece 606',
26 'title': 'One Piece 606',
30 def _real_extract(self
, url
):
31 video_id
= self
._match
_id
(url
)
34 webpage
= self
._download
_webpage
(url
, video_id
)
35 except ExtractorError
as ee
:
36 if not isinstance(ee
.cause
, compat_HTTPError
) or \
40 redir_webpage
= ee
.cause
.read().decode('utf-8')
41 action
= self
._search
_regex
(
42 r
'<form id="challenge-form" action="([^"]+)"',
43 redir_webpage
, 'Redirect form')
44 vc
= self
._search
_regex
(
45 r
'<input type="hidden" name="jschl_vc" value="([^"]+)"/>',
46 redir_webpage
, 'redirect vc value')
48 r
'a\.value = ([0-9]+)[+]([0-9]+)[*]([0-9]+);',
51 raise ExtractorError('Cannot find redirect math task')
52 av_res
= int(av
.group(1)) + int(av
.group(2)) * int(av
.group(3))
54 parsed_url
= compat_urllib_parse_urlparse(url
)
55 av_val
= av_res
+ len(parsed_url
.netloc
)
57 parsed_url
.scheme
+ '://' + parsed_url
.netloc
+
59 compat_urllib_parse
.urlencode({
60 'jschl_vc': vc
, 'jschl_answer': compat_str(av_val
)}))
61 self
._download
_webpage
(
62 confirm_url
, video_id
,
63 note
='Confirming after redirect')
64 webpage
= self
._download
_webpage
(url
, video_id
)
67 for format_id
in ('normal', 'hq'):
68 rex
= r
"var %s_video_file = '(.*?)';" % re
.escape(format_id
)
69 video_url
= self
._search
_regex
(rex
, webpage
, 'video file URLx',
74 'format_id': format_id
,
77 self
._sort
_formats
(formats
)
78 video_title
= self
._og
_search
_title
(webpage
)
79 video_description
= self
._og
_search
_description
(webpage
)
86 'description': video_description