-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
83 lines (69 loc) · 2.45 KB
/
index.ts
File metadata and controls
83 lines (69 loc) · 2.45 KB
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
import path from "node:path";
import { ShortVideo } from "./dist";
const TOKEN = ""; // access_token.
const clip = new ShortVideo(TOKEN);
// const url = "./clip.mp4";
// // Загрузка клипа.
// clip.create(url, { group_id: 1, description: "Описание клипа #хештег1 #хештег2", wallpost: 1 })
// .then((resp) => {
// console.dir(resp, { depth: null });
// })
// .catch((error) => {
// console.dir(error, { depth: null });
// });
// Возвращает клипы подборки "Автомобили".
clip.getCollection({ group_id: 5054587, count: 3 })
.then((resp) => {
console.dir(resp, { depth: null });
})
.catch((error) => {
console.dir(error, { depth: null });
});
// // Получает информацию по каждому клипу группы или пользователя.
// clip.getOwnerVideos({ owner_id: -170063178, count: 1 })
// .then((resp) => {
// console.dir(resp, { depth: null });
// })
// .catch((error) => {
// console.dir(error, { depth: null });
// });
// const dir = path.join(__dirname, "clips");
// // Скачивает все клипы группы или пользователя.
// clip.downloadAllOwnerVideos(dir, { owner_id: -170063178, count: 1 })
// .then((resp) => {
// console.dir(resp, { depth: null });
// })
// .catch((error) => {
// console.dir(error, { depth: null });
// });
// // Получает персонализированную ленту с преднастройками.
// clip.getTopVideos({ count: 1 })
// .then((resp) => {
// console.dir(resp, { depth: null });
// })
// .catch((error) => {
// console.dir(error, { depth: null });
// });
// const dir = path.join(__dirname, "clips");
// clip.downloadAllTopVideos(dir, { count: 5 })
// .then((resp) => {
// console.dir(resp, { depth: null });
// })
// .catch((error) => {
// console.dir(error, { depth: null });
// });
// clip.search({ q: "бизнес" })
// .then((resp) => {
// console.dir(resp, { depth: null });
// })
// .catch((error) => {
// console.dir(error, { depth: null });
// });
// const dir = path.join(__dirname, "clips");
// clip.downloadAllSearch(dir, { q: "бизнес" }, (clip) => clip.views > 10000 && clip.likes.count > 1000 && clip.comments > 10)
// .then((resp) => {
// console.dir(resp, { depth: null });
// })
// .catch((error) => {
// console.dir(error, { depth: null });
// });