]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/trovo.py
[spotify] Detect iframe embeds (#3430)
[yt-dlp.git] / yt_dlp / extractor / trovo.py
CommitLineData
974208e1 1import itertools
a820dc72
RA
2import json
3
4from .common import InfoExtractor
5from ..utils import (
6 ExtractorError,
e0ddbd02 7 format_field,
a820dc72
RA
8 int_or_none,
9 str_or_none,
10 try_get,
11)
12
13
14class TrovoBaseIE(InfoExtractor):
15 _VALID_URL_BASE = r'https?://(?:www\.)?trovo\.live/'
36147a63 16 _HEADERS = {'Origin': 'https://trovo.live'}
a820dc72 17
0cbed930 18 def _call_api(self, video_id, query=None, data=None):
19 return self._download_json(
20 'https://gql.trovo.live/', video_id, query=query, data=data,
21 headers={'Accept': 'application/json'})
22
a820dc72
RA
23 def _extract_streamer_info(self, data):
24 streamer_info = data.get('streamerInfo') or {}
25 username = streamer_info.get('userName')
26 return {
27 'uploader': streamer_info.get('nickName'),
28 'uploader_id': str_or_none(streamer_info.get('uid')),
e0ddbd02 29 'uploader_url': format_field(username, template='https://trovo.live/%s'),
a820dc72
RA
30 }
31
32
33class TrovoIE(TrovoBaseIE):
34 _VALID_URL = TrovoBaseIE._VALID_URL_BASE + r'(?!(?:clip|video)/)(?P<id>[^/?&#]+)'
35
36 def _real_extract(self, url):
37 username = self._match_id(url)
0cbed930 38 live_info = self._call_api(username, query={
39 'query': '''{
a820dc72
RA
40 getLiveInfo(params: {userName: "%s"}) {
41 isLive
5d62709b 42 programInfo {
a820dc72
RA
43 coverUrl
44 id
45 streamInfo {
46 desc
47 playUrl
48 }
49 title
50 }
51 streamerInfo {
52 nickName
53 uid
54 userName
55 }
56 }
57}''' % username,
0cbed930 58 })['data']['getLiveInfo']
a820dc72
RA
59 if live_info.get('isLive') == 0:
60 raise ExtractorError('%s is offline' % username, expected=True)
61 program_info = live_info['programInfo']
62 program_id = program_info['id']
39ca3b5c 63 title = program_info['title']
a820dc72
RA
64
65 formats = []
66 for stream_info in (program_info.get('streamInfo') or []):
67 play_url = stream_info.get('playUrl')
68 if not play_url:
69 continue
70 format_id = stream_info.get('desc')
71 formats.append({
72 'format_id': format_id,
73 'height': int_or_none(format_id[:-1]) if format_id else None,
74 'url': play_url,
36147a63 75 'http_headers': self._HEADERS,
a820dc72
RA
76 })
77 self._sort_formats(formats)
78
79 info = {
80 'id': program_id,
81 'title': title,
82 'formats': formats,
83 'thumbnail': program_info.get('coverUrl'),
84 'is_live': True,
85 }
86 info.update(self._extract_streamer_info(live_info))
87 return info
88
89
90class TrovoVodIE(TrovoBaseIE):
91 _VALID_URL = TrovoBaseIE._VALID_URL_BASE + r'(?:clip|video)/(?P<id>[^/?&#]+)'
92 _TESTS = [{
93 'url': 'https://trovo.live/video/ltv-100095501_100095501_1609596043',
94 'info_dict': {
95 'id': 'ltv-100095501_100095501_1609596043',
96 'ext': 'mp4',
97 'title': 'Spontaner 12 Stunden Stream! - Ok Boomer!',
98 'uploader': 'Exsl',
99 'timestamp': 1609640305,
100 'upload_date': '20210103',
101 'uploader_id': '100095501',
102 'duration': 43977,
103 'view_count': int,
104 'like_count': int,
105 'comment_count': int,
106 'comments': 'mincount:8',
107 'categories': ['Grand Theft Auto V'],
108 },
3262f8ab 109 'skip': '404'
a820dc72
RA
110 }, {
111 'url': 'https://trovo.live/clip/lc-5285890810184026005',
112 'only_matching': True,
113 }]
114
115 def _real_extract(self, url):
116 vid = self._match_id(url)
0cbed930 117 resp = self._call_api(vid, data=json.dumps([{
118 'query': '''{
a820dc72
RA
119 batchGetVodDetailInfo(params: {vids: ["%s"]}) {
120 VodDetailInfos
121 }
122}''' % vid,
0cbed930 123 }, {
124 'query': '''{
a820dc72
RA
125 getCommentList(params: {appInfo: {postID: "%s"}, pageSize: 1000000000, preview: {}}) {
126 commentList {
127 author {
128 nickName
129 uid
130 }
131 commentID
132 content
133 createdAt
134 parentID
135 }
136 }
137}''' % vid,
0cbed930 138 }]).encode())
a820dc72
RA
139 vod_detail_info = resp[0]['data']['batchGetVodDetailInfo']['VodDetailInfos'][vid]
140 vod_info = vod_detail_info['vodInfo']
141 title = vod_info['title']
142
143 language = vod_info.get('languageName')
144 formats = []
145 for play_info in (vod_info.get('playInfos') or []):
146 play_url = play_info.get('playUrl')
147 if not play_url:
148 continue
149 format_id = play_info.get('desc')
150 formats.append({
151 'ext': 'mp4',
152 'filesize': int_or_none(play_info.get('fileSize')),
153 'format_id': format_id,
154 'height': int_or_none(format_id[:-1]) if format_id else None,
155 'language': language,
156 'protocol': 'm3u8_native',
157 'tbr': int_or_none(play_info.get('bitrate')),
158 'url': play_url,
36147a63 159 'http_headers': self._HEADERS,
a820dc72
RA
160 })
161 self._sort_formats(formats)
162
163 category = vod_info.get('categoryName')
164 get_count = lambda x: int_or_none(vod_info.get(x + 'Num'))
165
166 comment_list = try_get(resp, lambda x: x[1]['data']['getCommentList']['commentList'], list) or []
167 comments = []
168 for comment in comment_list:
169 content = comment.get('content')
170 if not content:
171 continue
172 author = comment.get('author') or {}
173 parent = comment.get('parentID')
174 comments.append({
175 'author': author.get('nickName'),
176 'author_id': str_or_none(author.get('uid')),
177 'id': str_or_none(comment.get('commentID')),
178 'text': content,
179 'timestamp': int_or_none(comment.get('createdAt')),
180 'parent': 'root' if parent == 0 else str_or_none(parent),
181 })
182
183 info = {
184 'id': vid,
185 'title': title,
186 'formats': formats,
187 'thumbnail': vod_info.get('coverUrl'),
188 'timestamp': int_or_none(vod_info.get('publishTs')),
189 'duration': int_or_none(vod_info.get('duration')),
190 'view_count': get_count('watch'),
191 'like_count': get_count('like'),
192 'comment_count': get_count('comment'),
193 'comments': comments,
194 'categories': [category] if category else None,
195 }
196 info.update(self._extract_streamer_info(vod_detail_info))
197 return info
974208e1
AG
198
199
3262f8ab 200class TrovoChannelBaseIE(TrovoBaseIE):
974208e1
AG
201 def _get_vod_json(self, page, uid):
202 raise NotImplementedError('This method must be implemented by subclasses')
203
204 def _entries(self, uid):
205 for page in itertools.count(1):
206 vod_json = self._get_vod_json(page, uid)
207 vods = vod_json.get('vodInfos', [])
208 for vod in vods:
209 yield self.url_result(
210 'https://trovo.live/%s/%s' % (self._TYPE, vod.get('vid')),
211 ie=TrovoVodIE.ie_key())
212 has_more = vod_json['hasMore']
213 if not has_more:
214 break
215
216 def _real_extract(self, url):
217 id = self._match_id(url)
0cbed930 218 uid = str(self._call_api(id, query={
974208e1
AG
219 'query': '{getLiveInfo(params:{userName:"%s"}){streamerInfo{uid}}}' % id
220 })['data']['getLiveInfo']['streamerInfo']['uid'])
221 return self.playlist_result(self._entries(uid), playlist_id=uid)
222
223
224class TrovoChannelVodIE(TrovoChannelBaseIE):
225 _VALID_URL = r'trovovod:(?P<id>[^\s]+)'
96565c7e 226 IE_DESC = 'All VODs of a trovo.live channel; "trovovod:" prefix'
974208e1
AG
227
228 _TESTS = [{
229 'url': 'trovovod:OneTappedYou',
230 'playlist_mincount': 24,
231 'info_dict': {
232 'id': '100719456',
233 },
234 }]
235
236 _QUERY = '{getChannelLtvVideoInfos(params:{pageSize:99,currPage:%d,channelID:%s}){hasMore,vodInfos{vid}}}'
237 _TYPE = 'video'
238
239 def _get_vod_json(self, page, uid):
0cbed930 240 return self._call_api(uid, query={
974208e1
AG
241 'query': self._QUERY % (page, uid)
242 })['data']['getChannelLtvVideoInfos']
243
244
245class TrovoChannelClipIE(TrovoChannelBaseIE):
246 _VALID_URL = r'trovoclip:(?P<id>[^\s]+)'
96565c7e 247 IE_DESC = 'All Clips of a trovo.live channel; "trovoclip:" prefix'
974208e1
AG
248
249 _TESTS = [{
250 'url': 'trovoclip:OneTappedYou',
251 'playlist_mincount': 29,
252 'info_dict': {
253 'id': '100719456',
254 },
255 }]
256
257 _QUERY = '{getChannelClipVideoInfos(params:{pageSize:99,currPage:%d,channelID:%s,albumType:VOD_CLIP_ALBUM_TYPE_LATEST}){hasMore,vodInfos{vid}}}'
258 _TYPE = 'clip'
259
260 def _get_vod_json(self, page, uid):
0cbed930 261 return self._call_api(uid, query={
974208e1
AG
262 'query': self._QUERY % (page, uid)
263 })['data']['getChannelClipVideoInfos']