-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathvideo.py
301 lines (245 loc) · 9.3 KB
/
video.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
from __future__ import annotations
from ..helpers import extract_video_id_from_url
from typing import TYPE_CHECKING, ClassVar, Iterator, Optional
from datetime import datetime
import requests
from ..exceptions import InvalidResponseException
import json
if TYPE_CHECKING:
from ..tiktok import TikTokApi
from .user import User
from .sound import Sound
from .hashtag import Hashtag
from .comment import Comment
class Video:
"""
A TikTok Video class
Example Usage
```py
video = api.video(id='7041997751718137094')
```
"""
parent: ClassVar[TikTokApi]
id: Optional[str]
"""TikTok's ID of the Video"""
url: Optional[str]
"""The URL of the Video"""
create_time: Optional[datetime]
"""The creation time of the Video"""
stats: Optional[dict]
"""TikTok's stats of the Video"""
author: Optional[User]
"""The User who created the Video"""
sound: Optional[Sound]
"""The Sound that is associated with the Video"""
hashtags: Optional[list[Hashtag]]
"""A List of Hashtags on the Video"""
as_dict: dict
"""The raw data associated with this Video."""
def __init__(
self,
id: Optional[str] = None,
url: Optional[str] = None,
data: Optional[dict] = None,
**kwargs,
):
"""
You must provide the id or a valid url, else this will fail.
"""
self.id = id
self.url = url
if data is not None:
self.as_dict = data
self.__extract_from_data()
elif url is not None:
i, session = self.parent._get_session(**kwargs)
self.id = extract_video_id_from_url(
url,
headers=session.headers,
proxy=kwargs.get("proxy")
if kwargs.get("proxy") is not None
else session.proxy,
)
if getattr(self, "id", None) is None:
raise TypeError("You must provide id or url parameter.")
async def info(self, **kwargs) -> dict:
"""
Returns a dictionary of all data associated with a TikTok Video.
Note: This is slow since it requires an HTTP request, avoid using this if possible.
Returns:
dict: A dictionary of all data associated with a TikTok Video.
Raises:
InvalidResponseException: If TikTok returns an invalid response, or one we don't understand.
Example Usage:
.. code-block:: python
url = "https://www.tiktok.com/@davidteathercodes/video/7106686413101468970"
video_info = await api.video(url=url).info()
"""
i, session = self.parent._get_session(**kwargs)
proxy = (
kwargs.get("proxy") if kwargs.get("proxy") is not None else session.proxy
)
if self.url is None:
raise TypeError("To call video.info() you need to set the video's url.")
r = requests.get(self.url, headers=session.headers, proxies=proxy)
if r.status_code != 200:
raise InvalidResponseException(
r.text, "TikTok returned an invalid response.", error_code=r.status_code
)
# extract tag <script id="SIGI_STATE" type="application/json">{..}</script>
# extract json in the middle
start = r.text.find('<script id="SIGI_STATE" type="application/json">')
if start == -1:
raise InvalidResponseException(
r.text, "TikTok returned an invalid response.", error_code=r.status_code
)
start += len('<script id="SIGI_STATE" type="application/json">')
end = r.text.find("</script>", start)
if end == -1:
raise InvalidResponseException(
r.text, "TikTok returned an invalid response.", error_code=r.status_code
)
data = json.loads(r.text[start:end])
video_info = data["ItemModule"][self.id]
self.as_dict = video_info
self.__extract_from_data()
return video_info
async def bytes(self, **kwargs) -> bytes:
"""
Returns the bytes of a TikTok Video.
TODO:
Not implemented yet.
Example Usage:
.. code-block:: python
video_bytes = api.video(id='7041997751718137094').bytes()
# Saving The Video
with open('saved_video.mp4', 'wb') as output:
output.write(video_bytes)
"""
raise NotImplementedError
i, session = self.parent._get_session(**kwargs)
downloadAddr = self.as_dict["video"]["downloadAddr"]
cookies = await self.parent.get_session_cookies(session)
cookie_str = "; ".join([f"{k}={v}" for k, v in cookies.items()])
h = session.headers
h["cookie"] = cookie_str
# Fetching the video bytes using a browser fetch within the page context
file_bytes = await session.page.evaluate(
"""
async (url, headers) => {
const response = await fetch(url, { headers });
if (response.ok) {
const buffer = await response.arrayBuffer();
return new Uint8Array(buffer);
} else {
return `Error: ${response.statusText}`; // Return an error message if the fetch fails
}
}
""",
(downloadAddr, h),
)
byte_values = [
value
for key, value in sorted(file_bytes.items(), key=lambda item: int(item[0]))
]
return bytes(byte_values)
def __extract_from_data(self) -> None:
data = self.as_dict
self.id = data["id"]
timestamp = data.get("createTime", None)
if timestamp is not None:
try:
timestamp = int(timestamp)
except ValueError:
pass
self.create_time = datetime.fromtimestamp(timestamp)
self.stats = data["stats"]
author = data["author"]
if isinstance(author, str):
self.author = self.parent.user(username=author)
else:
self.author = self.parent.user(data=author)
self.sound = self.parent.sound(data=data)
self.hashtags = [
self.parent.hashtag(data=hashtag) for hashtag in data.get("challenges", [])
]
if getattr(self, "id", None) is None:
Video.parent.logger.error(
f"Failed to create Video with data: {data}\nwhich has keys {data.keys()}"
)
async def comments(self, count=20, cursor=0, **kwargs) -> Iterator[Comment]:
"""
Returns the comments of a TikTok Video.
Parameters:
count (int): The amount of comments you want returned.
cursor (int): The the offset of comments from 0 you want to get.
Returns:
async iterator/generator: Yields TikTokApi.comment objects.
Example Usage
.. code-block:: python
async for comment in api.video(id='7041997751718137094').comments():
# do something
```
"""
found = 0
while found < count:
params = {
"aweme_id": self.id,
"count": 20,
"cursor": cursor,
}
resp = await self.parent.make_request(
url="https://www.tiktok.com/api/comment/list/",
params=params,
headers=kwargs.get("headers"),
session_index=kwargs.get("session_index"),
)
if resp is None:
raise InvalidResponseException(
resp, "TikTok returned an invalid response."
)
for video in resp.get("comments", []):
yield self.parent.comment(data=video)
found += 1
if not resp.get("has_more", False):
return
cursor = resp.get("cursor")
async def related_videos(
self, count: int = 30, cursor: int = 0, **kwargs
) -> Iterator[Video]:
"""
Returns related videos of a TikTok Video.
Parameters:
count (int): The amount of comments you want returned.
cursor (int): The the offset of comments from 0 you want to get.
Returns:
async iterator/generator: Yields TikTokApi.video objects.
Example Usage
.. code-block:: python
async for related_videos in api.video(id='7041997751718137094').related_videos():
# do something
```
"""
found = 0
while found < count:
params = {
"itemID": self.id,
"count": 16,
}
resp = await self.parent.make_request(
url="https://www.tiktok.com/api/related/item_list/",
params=params,
headers=kwargs.get("headers"),
session_index=kwargs.get("session_index"),
)
if resp is None:
raise InvalidResponseException(
resp, "TikTok returned an invalid response."
)
for video in resp.get("itemList", []):
yield self.parent.video(data=video)
found += 1
def __repr__(self):
return self.__str__()
def __str__(self):
return f"TikTokApi.video(id='{getattr(self, 'id', None)}')"