-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvoke-YoutubeDL.d.ts
53 lines (45 loc) · 1.13 KB
/
Invoke-YoutubeDL.d.ts
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
export type opts = {
// video selection
playlist_start?: number;
playlist_end?: number;
playlist_items?: string;
max_downloads?: number;
min_filesize?: string;
max_filesize?: string;
on_date?: string;
date_before?: string;
date_after?: string;
min_views?: number;
max_views?: number;
match_filter?: string;
sys_dl_log?: string;
// download options
concurrent_fragments?: number;
limit_rate?: string;
retries?: number;
playlist_reverse?: boolean;
// filesystem options
batch_file?: string;
/** output format, not to be confused with `format` */
output?: string;
no_continue?: boolean;
// workarounds
sleep_requests?: number;
min_sleep_interval?: number;
max_sleep_interval?: number;
sleep_subtitles?: number;
// video format options
format?: string;
// subtitle options
sub_format?: string;
// authentication options
auth?: {
username: string;
password: string;
};
// post processing options
/** Only meant for the user to see when things were downloaded */
usr_dl_log?: string;
// non options
urls?: string[];
};