]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/afreecatv.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..compat
import compat_xpath
15 class AfreecaTVIE(InfoExtractor
):
17 IE_DESC
= 'afreecatv.com'
21 (?:(?:live|afbbs|www)\.)?afreeca(?:tv)?\.com(?::\d+)?
23 /app/(?:index|read_ucc_bbs)\.cgi|
24 /player/[Pp]layer\.(?:swf|html)
26 vod\.afreecatv\.com/PLAYER/STATION/
31 'url': 'http://live.afreecatv.com:8079/app/index.cgi?szType=read_ucc_bbs&szBjId=dailyapril&nStationNo=16711924&nBbsNo=18605867&nTitleNo=36164052&szSkin=',
32 'md5': 'f72c89fe7ecc14c1b5ce506c4996046e',
36 'title': '데일리 에이프릴 요정들의 시상식!',
37 'thumbnail': 're:^https?://(?:video|st)img.afreecatv.com/.*$',
38 'uploader': 'dailyapril',
39 'uploader_id': 'dailyapril',
40 'upload_date': '20160503',
42 'skip': 'Video is gone',
44 'url': 'http://afbbs.afreecatv.com:8080/app/read_ucc_bbs.cgi?nStationNo=16711924&nTitleNo=36153164&szBjId=dailyapril&nBbsNo=18605867',
47 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!'",
48 'thumbnail': 're:^https?://(?:video|st)img.afreecatv.com/.*$',
49 'uploader': 'dailyapril',
50 'uploader_id': 'dailyapril',
54 'md5': 'd8b7c174568da61d774ef0203159bf97',
58 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!'",
59 'upload_date': '20160502',
62 'md5': '58f2ce7f6044e34439ab2d50612ab02b',
66 'title': "BJ유트루와 함께하는 '팅커벨 메이크업!'",
67 'upload_date': '20160502',
70 'skip': 'Video is gone',
72 'url': 'http://vod.afreecatv.com/PLAYER/STATION/18650793',
77 'uploader_id': 'badkids',
78 'title': '오늘은 다르다! 쏘님의 우월한 위아래~ 댄스리액션!',
81 'skip_download': True, # requires rtmpdump
84 'url': 'http://www.afreecatv.com/player/Player.swf?szType=szBjId=djleegoon&nStationNo=11273158&nBbsNo=13161095&nTitleNo=36327652',
85 'only_matching': True,
87 'url': 'http://vod.afreecatv.com/PLAYER/STATION/15055030',
88 'only_matching': True,
92 def parse_video_key(key
):
94 m
= re
.match(r
'^(?P<upload_date>\d{8})_\w+_(?P<part>\d+)$', key
)
96 video_key
['upload_date'] = m
.group('upload_date')
97 video_key
['part'] = m
.group('part')
100 def _real_extract(self
, url
):
101 video_id
= self
._match
_id
(url
)
103 video_xml
= self
._download
_xml
(
104 'http://afbbs.afreecatv.com:8080/api/video/get_video_info.php',
105 video_id
, query
={'nTitleNo': video_id
})
107 video_element
= video_xml
.findall(compat_xpath('./track/video'))[1]
108 if video_element
is None or video_element
.text
is None:
109 raise ExtractorError('Specified AfreecaTV video does not exist',
112 video_url_raw
= video_element
.text
114 app
, playpath
= video_url_raw
.split('mp4:')
116 title
= xpath_text(video_xml
, './track/title', 'title', fatal
=True)
117 uploader
= xpath_text(video_xml
, './track/nickname', 'uploader')
118 uploader_id
= xpath_text(video_xml
, './track/bj_id', 'uploader id')
119 duration
= int_or_none(xpath_text(video_xml
, './track/duration',
121 thumbnail
= xpath_text(video_xml
, './track/titleImage', 'thumbnail')
127 'play_path': 'mp4:' + playpath
,
128 'rtmp_live': True, # downloading won't end without this
130 'uploader': uploader
,
131 'uploader_id': uploader_id
,
132 'duration': duration
,
133 'thumbnail': thumbnail
,
137 class AfreecaTVGlobalIE(AfreecaTVIE
):
138 IE_NAME
= 'afreecatv:global'
139 _VALID_URL
= r
'https?://(?:www\.)?afreeca\.tv/(?P<channel_id>\d+)(?:/v/(?P<video_id>\d+))?'
141 'url': 'http://afreeca.tv/36853014/v/58301',
144 'title': 'tryhard top100',
145 'uploader_id': '36853014',
146 'uploader': 'makgi Hearthstone Live!',
151 def _real_extract(self
, url
):
152 channel_id
, video_id
= re
.match(self
._VALID
_URL
, url
).groups()
153 video_type
= 'video' if video_id
else 'live'
159 query
['vno'] = video_id
160 video_data
= self
._download
_json
(
161 'http://api.afreeca.tv/%s/view_%s.php' % (video_type
, video_type
),
162 video_id
or channel_id
, query
=query
)['channel']
164 if video_data
.get('result') != 1:
165 raise ExtractorError('%s said: %s' % (self
.IE_NAME
, video_data
['remsg']))
167 title
= video_data
['title']
170 'thumbnail': video_data
.get('thumb'),
171 'view_count': int_or_none(video_data
.get('vcnt')),
172 'age_limit': int_or_none(video_data
.get('grade')),
173 'uploader_id': channel_id
,
174 'uploader': video_data
.get('cname'),
179 for i
, f
in enumerate(video_data
.get('flist', [])):
180 video_key
= self
.parse_video_key(f
.get('key', ''))
181 f_url
= f
.get('file')
182 if not video_key
or not f_url
:
185 'id': '%s_%s' % (video_id
, video_key
.get('part', i
+ 1)),
187 'upload_date': video_key
.get('upload_date'),
188 'duration': int_or_none(f
.get('length')),
190 'protocol': 'm3u8_native',
197 'duration': int_or_none(video_data
.get('length')),
200 info
['_type'] = 'multi_video'
201 info
['entries'] = entries
202 elif len(entries
) == 1:
203 i
= entries
[0].copy()
208 for s
in video_data
.get('strm', []):
209 s_url
= s
.get('purl')
212 stype
= s
.get('stype')
214 formats
.extend(self
._extract
_m
3u8_formats
(
215 s_url
, channel_id
, 'mp4', m3u8_id
=stype
, fatal
=False))
216 elif stype
== 'RTMP':
218 label
= s
.get('label')
220 format_id
.append(label
)
222 'format_id': '-'.join(format_id
),
224 'tbr': int_or_none(s
.get('bps')),
225 'height': int_or_none(s
.get('brt')),
229 self
._sort
_formats
(formats
)
233 'title': self
._live
_title
(title
),