]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/adn.py
64fb755da0f663670778453590afa75974f8895d
2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
8 from ..aes
import aes_cbc_decrypt
18 srt_subtitles_timecode
,
24 class ADNIE(InfoExtractor
):
25 IE_DESC
= 'Anime Digital Network'
26 _VALID_URL
= r
'https?://(?:www\.)?animedigitalnetwork\.fr/video/[^/]+/(?P<id>\d+)'
28 'url': 'http://animedigitalnetwork.fr/video/blue-exorcist-kyoto-saga/7778-episode-1-debut-des-hostilites',
29 'md5': 'e497370d847fd79d9d4c74be55575c7a',
33 'title': 'Blue Exorcist - Kyôto Saga - Épisode 1',
34 'description': 'md5:2f7b5aa76edbc1a7a92cedcda8a528d5',
37 _BASE_URL
= 'http://animedigitalnetwork.fr'
39 def _get_subtitles(self
, sub_path
, video_id
):
43 enc_subtitles
= self
._download
_webpage
(
44 urljoin(self
._BASE
_URL
, sub_path
),
45 video_id
, fatal
=False, headers
={
46 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0',
51 # http://animedigitalnetwork.fr/components/com_vodvideo/videojs/adn-vjs.min.js
52 dec_subtitles
= intlist_to_bytes(aes_cbc_decrypt(
53 bytes_to_intlist(compat_b64decode(enc_subtitles
[24:])),
54 bytes_to_intlist(b
'\x1b\xe0\x29\x61\x38\x94\x24\x00\x12\xbd\xc5\x80\xac\xce\xbe\xb0'),
55 bytes_to_intlist(compat_b64decode(enc_subtitles
[:24]))
57 subtitles_json
= self
._parse
_json
(
58 dec_subtitles
[:-compat_ord(dec_subtitles
[-1])].decode(),
60 if not subtitles_json
:
64 for sub_lang
, sub
in subtitles_json
.items():
66 for num
, current
in enumerate(sub
):
68 float_or_none(current
.get('startTime')),
69 float_or_none(current
.get('endTime')),
71 if start
is None or end
is None or text
is None:
73 srt
+= os
.linesep
.join(
77 srt_subtitles_timecode(start
),
78 srt_subtitles_timecode(end
)),
83 if sub_lang
== 'vostf':
85 subtitles
.setdefault(sub_lang
, []).extend([{
87 'data': json
.dumps(sub
),
94 def _real_extract(self
, url
):
95 video_id
= self
._match
_id
(url
)
96 webpage
= self
._download
_webpage
(url
, video_id
)
97 player_config
= self
._parse
_json
(self
._search
_regex
(
98 r
'playerConfig\s*=\s*({.+});', webpage
, 'player config'), video_id
)
101 video_info_str
= self
._search
_regex
(
102 r
'videoInfo\s*=\s*({.+});', webpage
,
103 'video info', fatal
=False)
105 video_info
= self
._parse
_json
(
106 video_info_str
, video_id
, fatal
=False) or {}
108 options
= player_config
.get('options') or {}
109 metas
= options
.get('metas') or {}
110 title
= metas
.get('title') or video_info
['title']
111 links
= player_config
.get('links') or {}
114 links_url
= player_config
['linksurl']
115 links_data
= self
._download
_json
(urljoin(
116 self
._BASE
_URL
, links_url
), video_id
)
117 links
= links_data
.get('links') or {}
118 error
= links_data
.get('error')
121 for format_id
, qualities
in links
.items():
122 if not isinstance(qualities
, dict):
124 for load_balancer_url
in qualities
.values():
125 load_balancer_data
= self
._download
_json
(
126 load_balancer_url
, video_id
, fatal
=False) or {}
127 m3u8_url
= load_balancer_data
.get('location')
130 m3u8_formats
= self
._extract
_m
3u8_formats
(
131 m3u8_url
, video_id
, 'mp4', 'm3u8_native',
132 m3u8_id
=format_id
, fatal
=False)
133 if format_id
== 'vf':
134 for f
in m3u8_formats
:
136 formats
.extend(m3u8_formats
)
138 error
= options
.get('error')
139 if not formats
and error
:
140 raise ExtractorError('%s said: %s' % (self
.IE_NAME
, error
), expected
=True)
141 self
._sort
_formats
(formats
)
146 'description': strip_or_none(metas
.get('summary') or video_info
.get('resume')),
147 'thumbnail': video_info
.get('image'),
149 'subtitles': self
.extract_subtitles(player_config
.get('subtitles'), video_id
),
150 'episode': metas
.get('subtitle') or video_info
.get('videoTitle'),
151 'series': video_info
.get('playlistTitle'),