]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/douyutv.py
Merge branch 'patch-2' of https://github.com/steven7851/youtube-dl into steven7851...
[yt-dlp.git] / youtube_dl / extractor / douyutv.py
CommitLineData
a172d962 1# coding: utf-8
2from __future__ import unicode_literals
3
8343a033
YCH
4import hashlib
5import time
b281aad2 6import uuid
a172d962 7from .common import InfoExtractor
8343a033 8from ..utils import (ExtractorError, unescapeHTML)
b281aad2 9from ..compat import (compat_str, compat_basestring, compat_urllib_parse_urlencode)
a172d962 10
a172d962 11
2ca1c5aa 12class DouyuTVIE(InfoExtractor):
513cbdda 13 IE_DESC = '斗鱼'
3bb33568 14 _VALID_URL = r'https?://(?:www\.)?douyu(?:tv)?\.com/(?P<id>[A-Za-z0-9]+)'
8343a033 15 _TESTS = [{
a172d962 16 'url': 'http://www.douyutv.com/iseven',
17 'info_dict': {
8343a033
YCH
18 'id': '17732',
19 'display_id': 'iseven',
a172d962 20 'ext': 'flv',
2ca1c5aa 21 'title': 're:^清晨醒脑!T-ara根本停不下来! [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
aa9dc24f 22 'description': 're:.*m7show@163\.com.*',
a172d962 23 'thumbnail': 're:^https?://.*\.jpg$',
2ca1c5aa 24 'uploader': '7师傅',
a172d962 25 'is_live': True,
2ca1c5aa
S
26 },
27 'params': {
28 'skip_download': True,
24ca0e9c 29 },
8343a033
YCH
30 }, {
31 'url': 'http://www.douyutv.com/85982',
32 'info_dict': {
33 'id': '85982',
34 'display_id': '85982',
35 'ext': 'flv',
36 'title': 're:^小漠从零单排记!——CSOL2躲猫猫 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
37 'description': 'md5:746a2f7a253966a06755a912f0acc0d2',
38 'thumbnail': 're:^https?://.*\.jpg$',
39 'uploader': 'douyu小漠',
8343a033
YCH
40 'is_live': True,
41 },
42 'params': {
43 'skip_download': True,
24ca0e9c 44 },
aa9dc24f 45 'skip': 'Room not found',
24ca0e9c
YCH
46 }, {
47 'url': 'http://www.douyutv.com/17732',
48 'info_dict': {
49 'id': '17732',
50 'display_id': '17732',
51 'ext': 'flv',
52 'title': 're:^清晨醒脑!T-ara根本停不下来! [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
aa9dc24f 53 'description': 're:.*m7show@163\.com.*',
24ca0e9c
YCH
54 'thumbnail': 're:^https?://.*\.jpg$',
55 'uploader': '7师傅',
24ca0e9c
YCH
56 'is_live': True,
57 },
58 'params': {
59 'skip_download': True,
60 },
3bb33568
YCH
61 }, {
62 'url': 'http://www.douyu.com/xiaocang',
63 'only_matching': True,
8343a033 64 }]
a172d962 65
66 def _real_extract(self, url):
67 video_id = self._match_id(url)
a172d962 68
8343a033
YCH
69 if video_id.isdigit():
70 room_id = video_id
71 else:
72 page = self._download_webpage(url, video_id)
73 room_id = self._html_search_regex(
74 r'"room_id"\s*:\s*(\d+),', page, 'room id')
75
b281aad2 76 room_url = 'http://m.douyu.com/html5/live?roomId=%s' % room_id
77 room_content = self._download_webpage(room_url, video_id)
78 room_json = self._parse_json(room_content, video_id, fatal=False)
79
80 room = room_json['data']
81
82 show_status = room.get('show_status')
83 # 1 = live, 2 = offline
84 if show_status == '2':
85 raise ExtractorError(
86 'Live stream is offline', expected=True)
87
88 flv_json = None
aa9dc24f
YCH
89 # Douyu API sometimes returns error "Unable to load the requested class: eticket_redis_cache"
90 # Retry with different parameters - same parameters cause same errors
91 for i in range(5):
b281aad2 92 tt = int(time.time() / 60)
93 did = uuid.uuid4().hex.upper()
94
95 # Decompile core.swf in webpage by ffdec "Search SWFs in memory"
96 # core.swf is encrypted originally, but ffdec can dump memory to get the decrypted one
97 # If API changes in the future, just use this way to update
98 sign_content = '{room_id}{did}A12Svb&%1UUmf@hC{tt}'.format(room_id = room_id, did = did, tt = tt)
99 sign = hashlib.md5((sign_content).encode('utf-8')).hexdigest()
8343a033 100
b281aad2 101 payload = {'cdn': 'ws', 'rate': '0', 'tt': tt, 'did': did, 'sign': sign}
102 flv_data = compat_urllib_parse_urlencode(payload)
103
104 flv_request_url = 'http://www.douyu.com/lapi/live/getPlay/%s' % room_id
105 flv_content = self._download_webpage(flv_request_url, video_id, data=flv_data,
106 headers={'Content-Type': 'application/x-www-form-urlencoded'})
aa9dc24f 107 try:
b281aad2 108 flv_json = self._parse_json(flv_content, video_id, fatal=False)
aa9dc24f
YCH
109 except ExtractorError:
110 # Wait some time before retrying to get a different time() value
111 self._sleep(1, video_id, msg_template='%(video_id)s: Error occurs. '
112 'Waiting for %(timeout)s seconds before retrying')
113 continue
114 else:
115 break
b281aad2 116 if flv_json is None:
aa9dc24f 117 raise ExtractorError('Unable to fetch API result')
a172d962 118
b281aad2 119 flv = flv_json['data']
2ca1c5aa 120
b281aad2 121 error_code = flv_json.get('error', 0)
a172d962 122 if error_code is not 0:
8343a033 123 error_desc = 'Server reported error %i' % error_code
b281aad2 124 if isinstance(flv, (compat_str, compat_basestring)):
125 error_desc += ': ' + flv
8343a033 126 raise ExtractorError(error_desc, expected=True)
a172d962 127
b281aad2 128 base_url = flv['rtmp_url']
129 live_path = flv['rtmp_live']
2ca1c5aa 130
b281aad2 131 video_url = '%s/%s' % (base_url, live_path)
2ca1c5aa 132
b281aad2 133 title = self._live_title(unescapeHTML(room['room_name']))
134 description = room.get('notice')
135 thumbnail = room.get('room_src')
136 uploader = room.get('nickname')
a172d962 137
138 return {
8343a033
YCH
139 'id': room_id,
140 'display_id': video_id,
b281aad2 141 'url': video_url,
a172d962 142 'title': title,
2ca1c5aa 143 'description': description,
a172d962 144 'thumbnail': thumbnail,
2ca1c5aa 145 'uploader': uploader,
a172d962 146 'is_live': True,
2ca1c5aa 147 }