]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/afreecatv.py
[archiveorg] Update test
[yt-dlp.git] / youtube_dl / extractor / afreecatv.py
CommitLineData
57cf9b7f
PR
1# coding: utf-8
2from __future__ import unicode_literals
3
1dbfd787
PR
4import re
5
57cf9b7f 6from .common import InfoExtractor
51ef4919 7from ..compat import compat_xpath
57cf9b7f 8from ..utils import (
6b9466de 9 determine_ext,
57cf9b7f
PR
10 ExtractorError,
11 int_or_none,
833b644f 12 xpath_text,
57cf9b7f
PR
13)
14
15
16class AfreecaTVIE(InfoExtractor):
c60089c0 17 IE_NAME = 'afreecatv'
57cf9b7f 18 IE_DESC = 'afreecatv.com'
e58609b2
S
19 _VALID_URL = r'''(?x)
20 https?://
21 (?:
22 (?:(?:live|afbbs|www)\.)?afreeca(?:tv)?\.com(?::\d+)?
23 (?:
24 /app/(?:index|read_ucc_bbs)\.cgi|
25 /player/[Pp]layer\.(?:swf|html)
26 )\?.*?\bnTitleNo=|
27 vod\.afreecatv\.com/PLAYER/STATION/
28 )
29 (?P<id>\d+)
30 '''
8d93c214 31 _TESTS = [{
57cf9b7f
PR
32 'url': 'http://live.afreecatv.com:8079/app/index.cgi?szType=read_ucc_bbs&szBjId=dailyapril&nStationNo=16711924&nBbsNo=18605867&nTitleNo=36164052&szSkin=',
33 'md5': 'f72c89fe7ecc14c1b5ce506c4996046e',
34 'info_dict': {
35 'id': '36164052',
36 'ext': 'mp4',
37 'title': '데일리 에이프릴 요정들의 시상식!',
3452c3a2 38 'thumbnail': 're:^https?://(?:video|st)img.afreecatv.com/.*$',
57cf9b7f
PR
39 'uploader': 'dailyapril',
40 'uploader_id': 'dailyapril',
8d93c214 41 'upload_date': '20160503',
51ef4919
YCH
42 },
43 'skip': 'Video is gone',
8d93c214
PR
44 }, {
45 'url': 'http://afbbs.afreecatv.com:8080/app/read_ucc_bbs.cgi?nStationNo=16711924&nTitleNo=36153164&szBjId=dailyapril&nBbsNo=18605867',
46 'info_dict': {
47 'id': '36153164',
48 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!'",
3452c3a2 49 'thumbnail': 're:^https?://(?:video|st)img.afreecatv.com/.*$',
8d93c214
PR
50 'uploader': 'dailyapril',
51 'uploader_id': 'dailyapril',
52 },
53 'playlist_count': 2,
54 'playlist': [{
55 'md5': 'd8b7c174568da61d774ef0203159bf97',
56 'info_dict': {
57 'id': '36153164_1',
58 'ext': 'mp4',
59 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!'",
60 'upload_date': '20160502',
61 },
62 }, {
63 'md5': '58f2ce7f6044e34439ab2d50612ab02b',
64 'info_dict': {
65 'id': '36153164_2',
66 'ext': 'mp4',
67 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!'",
68 'upload_date': '20160502',
69 },
70 }],
51ef4919
YCH
71 'skip': 'Video is gone',
72 }, {
73 'url': 'http://vod.afreecatv.com/PLAYER/STATION/18650793',
74 'info_dict': {
75 'id': '18650793',
6b9466de
S
76 'ext': 'mp4',
77 'title': '오늘은 다르다! 쏘님의 우월한 위아래~ 댄스리액션!',
78 'thumbnail': r're:^https?://.*\.jpg$',
51ef4919
YCH
79 'uploader': '윈아디',
80 'uploader_id': 'badkids',
6b9466de
S
81 'duration': 107,
82 },
83 'params': {
84 'skip_download': True,
85 },
86 }, {
87 'url': 'http://vod.afreecatv.com/PLAYER/STATION/10481652',
88 'info_dict': {
89 'id': '10481652',
90 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!'",
91 'thumbnail': 're:^https?://(?:video|st)img.afreecatv.com/.*$',
92 'uploader': 'dailyapril',
93 'uploader_id': 'dailyapril',
94 'duration': 6492,
51ef4919 95 },
6b9466de
S
96 'playlist_count': 2,
97 'playlist': [{
98 'md5': 'd8b7c174568da61d774ef0203159bf97',
99 'info_dict': {
e109f1ff 100 'id': '20160502_c4c62b9d_174361386_1',
6b9466de
S
101 'ext': 'mp4',
102 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!' (part 1)",
103 'thumbnail': 're:^https?://(?:video|st)img.afreecatv.com/.*$',
104 'uploader': 'dailyapril',
105 'uploader_id': 'dailyapril',
106 'upload_date': '20160502',
107 'duration': 3601,
108 },
109 }, {
110 'md5': '58f2ce7f6044e34439ab2d50612ab02b',
111 'info_dict': {
e109f1ff 112 'id': '20160502_39e739bb_174361386_2',
6b9466de
S
113 'ext': 'mp4',
114 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!' (part 2)",
115 'thumbnail': 're:^https?://(?:video|st)img.afreecatv.com/.*$',
116 'uploader': 'dailyapril',
117 'uploader_id': 'dailyapril',
118 'upload_date': '20160502',
119 'duration': 2891,
120 },
121 }],
51ef4919 122 'params': {
6b9466de 123 'skip_download': True,
51ef4919 124 },
e109f1ff
S
125 }, {
126 # non standard key
127 'url': 'http://vod.afreecatv.com/PLAYER/STATION/20515605',
128 'info_dict': {
129 'id': '20170411_BE689A0E_190960999_1_2_h',
130 'ext': 'mp4',
131 'title': '혼자사는여자집',
132 'thumbnail': 're:^https?://(?:video|st)img.afreecatv.com/.*$',
133 'uploader': '♥이슬이',
134 'uploader_id': 'dasl8121',
135 'upload_date': '20170411',
136 'duration': 213,
137 },
138 'params': {
139 'skip_download': True,
140 },
3452c3a2
PR
141 }, {
142 'url': 'http://www.afreecatv.com/player/Player.swf?szType=szBjId=djleegoon&nStationNo=11273158&nBbsNo=13161095&nTitleNo=36327652',
143 'only_matching': True,
e58609b2
S
144 }, {
145 'url': 'http://vod.afreecatv.com/PLAYER/STATION/15055030',
146 'only_matching': True,
8d93c214 147 }]
57cf9b7f 148
1dbfd787
PR
149 @staticmethod
150 def parse_video_key(key):
0fdbe314 151 video_key = {}
1dbfd787
PR
152 m = re.match(r'^(?P<upload_date>\d{8})_\w+_(?P<part>\d+)$', key)
153 if m:
154 video_key['upload_date'] = m.group('upload_date')
6b9466de 155 video_key['part'] = int(m.group('part'))
1dbfd787
PR
156 return video_key
157
57cf9b7f
PR
158 def _real_extract(self, url):
159 video_id = self._match_id(url)
e58609b2
S
160
161 video_xml = self._download_xml(
51ef4919
YCH
162 'http://afbbs.afreecatv.com:8080/api/video/get_video_info.php',
163 video_id, query={'nTitleNo': video_id})
57cf9b7f 164
51ef4919
YCH
165 video_element = video_xml.findall(compat_xpath('./track/video'))[1]
166 if video_element is None or video_element.text is None:
57cf9b7f
PR
167 raise ExtractorError('Specified AfreecaTV video does not exist',
168 expected=True)
e7d85c4e 169
6b9466de 170 video_url = video_element.text.strip()
51ef4919
YCH
171
172 title = xpath_text(video_xml, './track/title', 'title', fatal=True)
6b9466de 173
833b644f
PR
174 uploader = xpath_text(video_xml, './track/nickname', 'uploader')
175 uploader_id = xpath_text(video_xml, './track/bj_id', 'uploader id')
6b9466de
S
176 duration = int_or_none(xpath_text(
177 video_xml, './track/duration', 'duration'))
833b644f 178 thumbnail = xpath_text(video_xml, './track/titleImage', 'thumbnail')
57cf9b7f 179
6b9466de
S
180 common_entry = {
181 'uploader': uploader,
182 'uploader_id': uploader_id,
183 'thumbnail': thumbnail,
184 }
185
186 info = common_entry.copy()
187 info.update({
188 'id': video_id,
189 'title': title,
190 'duration': duration,
191 })
192
193 if not video_url:
194 entries = []
e109f1ff
S
195 file_elements = video_element.findall(compat_xpath('./file'))
196 one = len(file_elements) == 1
197 for file_num, file_element in enumerate(file_elements, start=1):
6b9466de
S
198 file_url = file_element.text
199 if not file_url:
200 continue
e109f1ff
S
201 key = file_element.get('key', '')
202 upload_date = self._search_regex(
203 r'^(\d{8})_', key, 'upload date', default=None)
6b9466de 204 file_duration = int_or_none(file_element.get('duration'))
e109f1ff 205 format_id = key if key else '%s_%s' % (video_id, file_num)
6b9466de
S
206 formats = self._extract_m3u8_formats(
207 file_url, video_id, 'mp4', entry_protocol='m3u8_native',
208 m3u8_id='hls',
209 note='Downloading part %d m3u8 information' % file_num)
e109f1ff 210 title = title if one else '%s (part %d)' % (title, file_num)
6b9466de
S
211 file_info = common_entry.copy()
212 file_info.update({
213 'id': format_id,
e109f1ff
S
214 'title': title,
215 'upload_date': upload_date,
6b9466de
S
216 'duration': file_duration,
217 'formats': formats,
218 })
219 entries.append(file_info)
220 entries_info = info.copy()
221 entries_info.update({
222 '_type': 'multi_video',
223 'entries': entries,
224 })
225 return entries_info
226
227 info = {
57cf9b7f
PR
228 'id': video_id,
229 'title': title,
230 'uploader': uploader,
231 'uploader_id': uploader_id,
232 'duration': duration,
233 'thumbnail': thumbnail,
234 }
235
6b9466de
S
236 if determine_ext(video_url) == 'm3u8':
237 info['formats'] = self._extract_m3u8_formats(
238 video_url, video_id, 'mp4', entry_protocol='m3u8_native',
239 m3u8_id='hls')
240 else:
241 app, playpath = video_url.split('mp4:')
242 info.update({
243 'url': app,
244 'ext': 'flv',
245 'play_path': 'mp4:' + playpath,
246 'rtmp_live': True, # downloading won't end without this
247 })
248
249 return info
250
c60089c0
RA
251
252class AfreecaTVGlobalIE(AfreecaTVIE):
253 IE_NAME = 'afreecatv:global'
254 _VALID_URL = r'https?://(?:www\.)?afreeca\.tv/(?P<channel_id>\d+)(?:/v/(?P<video_id>\d+))?'
255 _TESTS = [{
256 'url': 'http://afreeca.tv/36853014/v/58301',
257 'info_dict': {
258 'id': '58301',
259 'title': 'tryhard top100',
260 'uploader_id': '36853014',
261 'uploader': 'makgi Hearthstone Live!',
262 },
263 'playlist_count': 3,
264 }]
265
266 def _real_extract(self, url):
267 channel_id, video_id = re.match(self._VALID_URL, url).groups()
268 video_type = 'video' if video_id else 'live'
269 query = {
270 'pt': 'view',
271 'bid': channel_id,
272 }
273 if video_id:
274 query['vno'] = video_id
275 video_data = self._download_json(
276 'http://api.afreeca.tv/%s/view_%s.php' % (video_type, video_type),
277 video_id or channel_id, query=query)['channel']
278
279 if video_data.get('result') != 1:
280 raise ExtractorError('%s said: %s' % (self.IE_NAME, video_data['remsg']))
281
282 title = video_data['title']
283
284 info = {
285 'thumbnail': video_data.get('thumb'),
286 'view_count': int_or_none(video_data.get('vcnt')),
287 'age_limit': int_or_none(video_data.get('grade')),
288 'uploader_id': channel_id,
289 'uploader': video_data.get('cname'),
290 }
291
292 if video_id:
293 entries = []
294 for i, f in enumerate(video_data.get('flist', [])):
295 video_key = self.parse_video_key(f.get('key', ''))
296 f_url = f.get('file')
297 if not video_key or not f_url:
298 continue
299 entries.append({
300 'id': '%s_%s' % (video_id, video_key.get('part', i + 1)),
301 'title': title,
302 'upload_date': video_key.get('upload_date'),
303 'duration': int_or_none(f.get('length')),
304 'url': f_url,
305 'protocol': 'm3u8_native',
306 'ext': 'mp4',
307 })
308
309 info.update({
310 'id': video_id,
311 'title': title,
312 'duration': int_or_none(video_data.get('length')),
313 })
314 if len(entries) > 1:
315 info['_type'] = 'multi_video'
316 info['entries'] = entries
317 elif len(entries) == 1:
318 i = entries[0].copy()
319 i.update(info)
320 info = i
321 else:
322 formats = []
323 for s in video_data.get('strm', []):
324 s_url = s.get('purl')
325 if not s_url:
326 continue
3d2c2752
RA
327 stype = s.get('stype')
328 if stype == 'HLS':
c60089c0 329 formats.extend(self._extract_m3u8_formats(
3d2c2752
RA
330 s_url, channel_id, 'mp4', m3u8_id=stype, fatal=False))
331 elif stype == 'RTMP':
332 format_id = [stype]
333 label = s.get('label')
334 if label:
335 format_id.append(label)
336 formats.append({
337 'format_id': '-'.join(format_id),
338 'url': s_url,
339 'tbr': int_or_none(s.get('bps')),
340 'height': int_or_none(s.get('brt')),
341 'ext': 'flv',
342 'rtmp_live': True,
343 })
c60089c0
RA
344 self._sort_formats(formats)
345
346 info.update({
347 'id': channel_id,
348 'title': self._live_title(title),
349 'is_live': True,
350 'formats': formats,
351 })
352
353 return info