@jtdigital/renderbox-sdk 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +133 -53
- package/dist/graph.d.ts +127 -15
- package/dist/graph.d.ts.map +1 -1
- package/dist/graph.js +178 -40
- package/dist/graph.js.map +1 -1
- package/dist/index.d.ts +3 -10
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -10
- package/dist/index.js.map +1 -1
- package/dist/recipes/depthBlurPipeline.d.ts +2 -3
- package/dist/recipes/depthBlurPipeline.d.ts.map +1 -1
- package/dist/recipes/depthBlurPipeline.js +8 -11
- package/dist/recipes/depthBlurPipeline.js.map +1 -1
- package/dist/recipes/faceRedact.d.ts +3 -5
- package/dist/recipes/faceRedact.d.ts.map +1 -1
- package/dist/recipes/faceRedact.js +15 -19
- package/dist/recipes/faceRedact.js.map +1 -1
- package/dist/recipes/letterbox.d.ts +3 -2
- package/dist/recipes/letterbox.d.ts.map +1 -1
- package/dist/recipes/letterbox.js +5 -4
- package/dist/recipes/letterbox.js.map +1 -1
- package/dist/recipes/makeSlideshow.d.ts +2 -3
- package/dist/recipes/makeSlideshow.d.ts.map +1 -1
- package/dist/recipes/makeSlideshow.js +37 -37
- package/dist/recipes/makeSlideshow.js.map +1 -1
- package/dist/recipes/snip.d.ts +3 -2
- package/dist/recipes/snip.d.ts.map +1 -1
- package/dist/recipes/snip.js +2 -3
- package/dist/recipes/snip.js.map +1 -1
- package/dist/streams.d.ts +1481 -0
- package/dist/streams.d.ts.map +1 -0
- package/dist/streams.js +241 -0
- package/dist/streams.js.map +1 -0
- package/dist/types.d.ts +0 -5
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/input.d.ts +0 -30
- package/dist/input.d.ts.map +0 -1
- package/dist/input.js +0 -167
- package/dist/input.js.map +0 -1
- package/dist/job.d.ts +0 -18
- package/dist/job.d.ts.map +0 -1
- package/dist/job.js +0 -15
- package/dist/job.js.map +0 -1
- package/dist/ops/ai.d.ts +0 -156
- package/dist/ops/ai.d.ts.map +0 -1
- package/dist/ops/ai.js +0 -134
- package/dist/ops/ai.js.map +0 -1
- package/dist/ops/audio.d.ts +0 -359
- package/dist/ops/audio.d.ts.map +0 -1
- package/dist/ops/audio.js +0 -296
- package/dist/ops/audio.js.map +0 -1
- package/dist/ops/combine.d.ts +0 -246
- package/dist/ops/combine.d.ts.map +0 -1
- package/dist/ops/combine.js +0 -230
- package/dist/ops/combine.js.map +0 -1
- package/dist/ops/source.d.ts +0 -41
- package/dist/ops/source.d.ts.map +0 -1
- package/dist/ops/source.js +0 -34
- package/dist/ops/source.js.map +0 -1
- package/dist/ops/video.d.ts +0 -695
- package/dist/ops/video.d.ts.map +0 -1
- package/dist/ops/video.js +0 -620
- package/dist/ops/video.js.map +0 -1
- package/dist/output.d.ts +0 -26
- package/dist/output.d.ts.map +0 -1
- package/dist/output.js +0 -144
- package/dist/output.js.map +0 -1
- package/dist/recipes/subtitleBurn.d.ts +0 -11
- package/dist/recipes/subtitleBurn.d.ts.map +0 -1
- package/dist/recipes/subtitleBurn.js +0 -16
- package/dist/recipes/subtitleBurn.js.map +0 -1
|
@@ -0,0 +1,1481 @@
|
|
|
1
|
+
import type { SortTag, ParamValue } from './types.js';
|
|
2
|
+
import type { Graph } from './graph.js';
|
|
3
|
+
export interface AcompressorOpts {
|
|
4
|
+
threshold?: number;
|
|
5
|
+
ratio?: number;
|
|
6
|
+
}
|
|
7
|
+
export interface AcontrastOpts {
|
|
8
|
+
contrast?: number;
|
|
9
|
+
}
|
|
10
|
+
export interface AcrossfadeOpts {
|
|
11
|
+
d?: number;
|
|
12
|
+
}
|
|
13
|
+
export interface AdeclickOpts {
|
|
14
|
+
window?: number;
|
|
15
|
+
overlap?: number;
|
|
16
|
+
arorder?: number;
|
|
17
|
+
threshold?: number;
|
|
18
|
+
burst?: number;
|
|
19
|
+
method?: 'add' | 'a' | 'save' | 's';
|
|
20
|
+
}
|
|
21
|
+
export interface AdelayOpts {
|
|
22
|
+
delays: string;
|
|
23
|
+
}
|
|
24
|
+
export interface AechoOpts {
|
|
25
|
+
in_gain?: number;
|
|
26
|
+
out_gain?: number;
|
|
27
|
+
delays: string;
|
|
28
|
+
decays: string;
|
|
29
|
+
}
|
|
30
|
+
export interface AfadeOpts {
|
|
31
|
+
type: 'in' | 'out';
|
|
32
|
+
/** @range greater than 0 */
|
|
33
|
+
duration?: number;
|
|
34
|
+
/** @range at least 0 */
|
|
35
|
+
start_time?: number;
|
|
36
|
+
}
|
|
37
|
+
export interface AfftdnOpts {
|
|
38
|
+
nr?: number;
|
|
39
|
+
nt?: 'w' | 'v' | 's' | 'p';
|
|
40
|
+
bn?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface AgateOpts {
|
|
43
|
+
threshold?: number;
|
|
44
|
+
ratio?: number;
|
|
45
|
+
attack?: number;
|
|
46
|
+
release?: number;
|
|
47
|
+
range?: number;
|
|
48
|
+
detection?: 'peak' | 'rms';
|
|
49
|
+
}
|
|
50
|
+
export interface AggregateTracksOpts {
|
|
51
|
+
attribute?: string;
|
|
52
|
+
method?: 'majority_vote' | 'weighted_avg' | 'last_n';
|
|
53
|
+
/** @range greater than 0 */
|
|
54
|
+
window?: number;
|
|
55
|
+
}
|
|
56
|
+
export interface AlimiterOpts {
|
|
57
|
+
limit?: number;
|
|
58
|
+
attack?: number;
|
|
59
|
+
release?: number;
|
|
60
|
+
level_in?: number;
|
|
61
|
+
level_out?: number;
|
|
62
|
+
asc?: boolean;
|
|
63
|
+
}
|
|
64
|
+
export interface AloopOpts {
|
|
65
|
+
loop?: number;
|
|
66
|
+
size?: number;
|
|
67
|
+
start?: number;
|
|
68
|
+
}
|
|
69
|
+
export interface AmergeOpts {
|
|
70
|
+
inputs?: number;
|
|
71
|
+
}
|
|
72
|
+
export interface AmixOpts {
|
|
73
|
+
normalize?: boolean;
|
|
74
|
+
duration?: 'longest' | 'shortest' | 'first';
|
|
75
|
+
}
|
|
76
|
+
export interface AnchorGraphicOpts {
|
|
77
|
+
keypoint: string;
|
|
78
|
+
offset_x?: number;
|
|
79
|
+
offset_y?: number;
|
|
80
|
+
}
|
|
81
|
+
export interface AnlmdnOpts {
|
|
82
|
+
s?: number;
|
|
83
|
+
p?: number;
|
|
84
|
+
r?: number;
|
|
85
|
+
}
|
|
86
|
+
export interface AnnotateOpts {
|
|
87
|
+
style?: 'bbox' | 'label' | 'bbox+label' | 'mask';
|
|
88
|
+
thickness?: number;
|
|
89
|
+
show_confidence?: boolean;
|
|
90
|
+
fontsize?: number;
|
|
91
|
+
fontcolor?: string;
|
|
92
|
+
color?: string;
|
|
93
|
+
class_colors?: Record<string, ParamValue>;
|
|
94
|
+
}
|
|
95
|
+
export interface ApadOpts {
|
|
96
|
+
whole_dur?: number;
|
|
97
|
+
}
|
|
98
|
+
export interface AphaserOpts {
|
|
99
|
+
in_gain?: number;
|
|
100
|
+
out_gain?: number;
|
|
101
|
+
delay?: number;
|
|
102
|
+
decay?: number;
|
|
103
|
+
speed?: number;
|
|
104
|
+
type?: 'triangular' | 'sinusoidal';
|
|
105
|
+
}
|
|
106
|
+
export interface AresampleOpts {
|
|
107
|
+
rate: number;
|
|
108
|
+
}
|
|
109
|
+
export interface AstatsOpts {
|
|
110
|
+
metadata?: number;
|
|
111
|
+
reset?: number;
|
|
112
|
+
measure_perchannel?: string;
|
|
113
|
+
measure_overall?: string;
|
|
114
|
+
}
|
|
115
|
+
export interface AsubboostOpts {
|
|
116
|
+
dry?: number;
|
|
117
|
+
wet?: number;
|
|
118
|
+
decay?: number;
|
|
119
|
+
feedback?: number;
|
|
120
|
+
cutoff?: number;
|
|
121
|
+
slope?: number;
|
|
122
|
+
delay?: number;
|
|
123
|
+
}
|
|
124
|
+
export interface AtempoOpts {
|
|
125
|
+
/** @range [0.5, 100] */
|
|
126
|
+
tempo: number;
|
|
127
|
+
}
|
|
128
|
+
export interface AtrimOpts {
|
|
129
|
+
/** @range at least 0 */
|
|
130
|
+
start?: number;
|
|
131
|
+
/** @range greater than 0 */
|
|
132
|
+
end?: number;
|
|
133
|
+
}
|
|
134
|
+
export interface AutoEnhanceOpts {
|
|
135
|
+
model: string;
|
|
136
|
+
/** @range [0, 1] */
|
|
137
|
+
strength?: number;
|
|
138
|
+
}
|
|
139
|
+
export interface BackgroundkeyOpts {
|
|
140
|
+
threshold?: number;
|
|
141
|
+
similarity?: number;
|
|
142
|
+
blend?: number;
|
|
143
|
+
}
|
|
144
|
+
export interface BandpassOpts {
|
|
145
|
+
f: number;
|
|
146
|
+
width_type?: 'h' | 'q' | 'o' | 's' | 'k';
|
|
147
|
+
width: number;
|
|
148
|
+
}
|
|
149
|
+
export interface BassOpts {
|
|
150
|
+
gain: number;
|
|
151
|
+
frequency?: number;
|
|
152
|
+
width_type?: 'h' | 'q' | 'o' | 's' | 'k';
|
|
153
|
+
width?: number;
|
|
154
|
+
}
|
|
155
|
+
export interface BilateralOpts {
|
|
156
|
+
sigmaS?: number;
|
|
157
|
+
sigmaR?: number;
|
|
158
|
+
planes?: number;
|
|
159
|
+
}
|
|
160
|
+
export interface BlackdetectOpts {
|
|
161
|
+
d?: number;
|
|
162
|
+
pix_th?: number;
|
|
163
|
+
pic_th?: number;
|
|
164
|
+
}
|
|
165
|
+
export interface BlendOpts {
|
|
166
|
+
all_mode?: string;
|
|
167
|
+
all_opacity?: number;
|
|
168
|
+
all_expr?: string;
|
|
169
|
+
}
|
|
170
|
+
export interface Bm3dOpts {
|
|
171
|
+
sigma?: number;
|
|
172
|
+
block?: number;
|
|
173
|
+
bstep?: number;
|
|
174
|
+
group?: number;
|
|
175
|
+
range?: number;
|
|
176
|
+
mstep?: number;
|
|
177
|
+
thmse?: number;
|
|
178
|
+
hdthr?: number;
|
|
179
|
+
estim?: 'basic' | 'final';
|
|
180
|
+
}
|
|
181
|
+
export interface BoxblurOpts {
|
|
182
|
+
luma_radius?: string;
|
|
183
|
+
chroma_radius?: string;
|
|
184
|
+
luma_power?: number;
|
|
185
|
+
chroma_power?: number;
|
|
186
|
+
}
|
|
187
|
+
export interface CasOpts {
|
|
188
|
+
/** @range [0, 1] */
|
|
189
|
+
strength?: number;
|
|
190
|
+
planes?: number;
|
|
191
|
+
}
|
|
192
|
+
export interface ChannelmapOpts {
|
|
193
|
+
map?: string;
|
|
194
|
+
channel_layout?: string;
|
|
195
|
+
}
|
|
196
|
+
export interface ChorusOpts {
|
|
197
|
+
in_gain?: number;
|
|
198
|
+
out_gain?: number;
|
|
199
|
+
delays?: string;
|
|
200
|
+
speeds?: string;
|
|
201
|
+
depths?: string;
|
|
202
|
+
decays?: string;
|
|
203
|
+
}
|
|
204
|
+
export interface ChromakeyOpts {
|
|
205
|
+
color: string;
|
|
206
|
+
/** @range [0, 1] */
|
|
207
|
+
similarity?: number;
|
|
208
|
+
/** @range [0, 1] */
|
|
209
|
+
blend?: number;
|
|
210
|
+
}
|
|
211
|
+
export interface ClassifyAudioEventOpts {
|
|
212
|
+
model?: string;
|
|
213
|
+
/** @range [0, 1] */
|
|
214
|
+
threshold?: number;
|
|
215
|
+
/** @range greater than 0 */
|
|
216
|
+
window_seconds?: number;
|
|
217
|
+
/** @range greater than 0 */
|
|
218
|
+
hop_seconds?: number;
|
|
219
|
+
}
|
|
220
|
+
export interface ClassifyDetectionsOpts {
|
|
221
|
+
model: string;
|
|
222
|
+
/** @range [0, 1] */
|
|
223
|
+
crop_region?: number;
|
|
224
|
+
/** @range at least 0 */
|
|
225
|
+
padding?: number;
|
|
226
|
+
attribute?: string;
|
|
227
|
+
/** @range [0, 1] */
|
|
228
|
+
threshold?: number;
|
|
229
|
+
labels?: string;
|
|
230
|
+
crop_anchor?: string;
|
|
231
|
+
/** @range [0, 1] */
|
|
232
|
+
crop_height_ratio?: number;
|
|
233
|
+
norm?: string;
|
|
234
|
+
}
|
|
235
|
+
export interface ClassifySceneOpts {
|
|
236
|
+
model?: string;
|
|
237
|
+
/** @range [0, 1] */
|
|
238
|
+
threshold?: number;
|
|
239
|
+
/** @range greater than 0 */
|
|
240
|
+
top_k?: number;
|
|
241
|
+
batchSize?: number;
|
|
242
|
+
}
|
|
243
|
+
export interface ColorCorrectOpts {
|
|
244
|
+
model: string;
|
|
245
|
+
/** @range [0, 1] */
|
|
246
|
+
strength?: number;
|
|
247
|
+
}
|
|
248
|
+
export interface ColorbalanceOpts {
|
|
249
|
+
rs?: number;
|
|
250
|
+
gs?: number;
|
|
251
|
+
bs?: number;
|
|
252
|
+
rm?: number;
|
|
253
|
+
gm?: number;
|
|
254
|
+
bm?: number;
|
|
255
|
+
rh?: number;
|
|
256
|
+
gh?: number;
|
|
257
|
+
bh?: number;
|
|
258
|
+
}
|
|
259
|
+
export interface ColorchannelmixerOpts {
|
|
260
|
+
rr?: number;
|
|
261
|
+
rg?: number;
|
|
262
|
+
rb?: number;
|
|
263
|
+
ra?: number;
|
|
264
|
+
gr?: number;
|
|
265
|
+
gg?: number;
|
|
266
|
+
gb?: number;
|
|
267
|
+
ga?: number;
|
|
268
|
+
br?: number;
|
|
269
|
+
bg?: number;
|
|
270
|
+
bb?: number;
|
|
271
|
+
ba?: number;
|
|
272
|
+
ar?: number;
|
|
273
|
+
ag?: number;
|
|
274
|
+
ab?: number;
|
|
275
|
+
aa?: number;
|
|
276
|
+
}
|
|
277
|
+
export interface ColorgradeOpts {
|
|
278
|
+
lut?: string;
|
|
279
|
+
}
|
|
280
|
+
export interface ColorholdOpts {
|
|
281
|
+
color: string;
|
|
282
|
+
similarity?: number;
|
|
283
|
+
blend?: number;
|
|
284
|
+
}
|
|
285
|
+
export interface ColorizeOpts {
|
|
286
|
+
model: string;
|
|
287
|
+
/** @range greater than 0 */
|
|
288
|
+
saturation?: number;
|
|
289
|
+
/** @range [0, 1] */
|
|
290
|
+
temporal_stability?: number;
|
|
291
|
+
}
|
|
292
|
+
export interface ColorkeyOpts {
|
|
293
|
+
color: string;
|
|
294
|
+
/** @range [0, 1] */
|
|
295
|
+
similarity?: number;
|
|
296
|
+
/** @range [0, 1] */
|
|
297
|
+
blend?: number;
|
|
298
|
+
}
|
|
299
|
+
export interface ColorspaceOpts {
|
|
300
|
+
all?: 'bt470m' | 'bt470bg' | 'bt601-6-525' | 'bt601-6-625' | 'bt709' | 'smpte170m' | 'smpte240m' | 'bt2020';
|
|
301
|
+
space?: string;
|
|
302
|
+
trc?: string;
|
|
303
|
+
primaries?: string;
|
|
304
|
+
range?: 'tv' | 'mpeg' | 'pc' | 'jpeg';
|
|
305
|
+
format?: string;
|
|
306
|
+
fast?: number;
|
|
307
|
+
iall?: string;
|
|
308
|
+
ispace?: string;
|
|
309
|
+
itrc?: string;
|
|
310
|
+
iprimaries?: string;
|
|
311
|
+
irange?: 'tv' | 'mpeg' | 'pc' | 'jpeg';
|
|
312
|
+
}
|
|
313
|
+
export interface ColortemperatureOpts {
|
|
314
|
+
temperature: number;
|
|
315
|
+
}
|
|
316
|
+
export interface CompandOpts {
|
|
317
|
+
attacks?: string;
|
|
318
|
+
decays?: string;
|
|
319
|
+
points?: string;
|
|
320
|
+
'soft-knee'?: number;
|
|
321
|
+
gain?: number;
|
|
322
|
+
volume?: number;
|
|
323
|
+
delay?: number;
|
|
324
|
+
}
|
|
325
|
+
export interface ComputeAnglesOpts {
|
|
326
|
+
angles?: string;
|
|
327
|
+
}
|
|
328
|
+
export interface ConcatOpts {
|
|
329
|
+
a?: number;
|
|
330
|
+
v?: number;
|
|
331
|
+
}
|
|
332
|
+
export interface ContainsDetectionsOpts {
|
|
333
|
+
/** @range [0, 1] */
|
|
334
|
+
min_containment?: number;
|
|
335
|
+
region?: string;
|
|
336
|
+
}
|
|
337
|
+
export interface CountOpts {
|
|
338
|
+
aggregate?: 'sum' | 'avg' | 'max' | 'min';
|
|
339
|
+
}
|
|
340
|
+
export interface CropOpts {
|
|
341
|
+
/** @range greater than 0 */
|
|
342
|
+
w?: number | string;
|
|
343
|
+
/** @range greater than 0 */
|
|
344
|
+
h?: number | string;
|
|
345
|
+
x?: number | string;
|
|
346
|
+
y?: number | string;
|
|
347
|
+
}
|
|
348
|
+
export interface CrossfeedOpts {
|
|
349
|
+
strength?: number;
|
|
350
|
+
range?: number;
|
|
351
|
+
slope?: number;
|
|
352
|
+
level_in?: number;
|
|
353
|
+
level_out?: number;
|
|
354
|
+
}
|
|
355
|
+
export interface CurvesOpts {
|
|
356
|
+
preset: 'none' | 'color_negative' | 'cross_process' | 'darker' | 'increase_contrast' | 'lighter' | 'linear_contrast' | 'medium_contrast' | 'negative' | 'strong_contrast' | 'vintage';
|
|
357
|
+
}
|
|
358
|
+
export interface DebandOpts {
|
|
359
|
+
'1thr'?: number;
|
|
360
|
+
range?: number;
|
|
361
|
+
blur?: boolean;
|
|
362
|
+
}
|
|
363
|
+
export interface DeblockOpts {
|
|
364
|
+
strong?: boolean;
|
|
365
|
+
}
|
|
366
|
+
export interface DeblurOpts {
|
|
367
|
+
model: string;
|
|
368
|
+
/** @range [0, 1] */
|
|
369
|
+
strength?: number;
|
|
370
|
+
}
|
|
371
|
+
export interface DeesserOpts {
|
|
372
|
+
i?: number;
|
|
373
|
+
m?: number;
|
|
374
|
+
f?: number;
|
|
375
|
+
s?: 'i' | 'o' | 'e';
|
|
376
|
+
}
|
|
377
|
+
export interface DeflickerOpts {
|
|
378
|
+
size?: number;
|
|
379
|
+
mode?: string;
|
|
380
|
+
}
|
|
381
|
+
export interface DeinterlaceOpts {
|
|
382
|
+
model: string;
|
|
383
|
+
}
|
|
384
|
+
export interface DelogoOpts {
|
|
385
|
+
x: number;
|
|
386
|
+
y: number;
|
|
387
|
+
w: number;
|
|
388
|
+
h: number;
|
|
389
|
+
}
|
|
390
|
+
export interface DenoiseOpts {
|
|
391
|
+
model: string;
|
|
392
|
+
/** @range [0, 1] */
|
|
393
|
+
strength?: number;
|
|
394
|
+
}
|
|
395
|
+
export interface DenoiseHqdn3dOpts {
|
|
396
|
+
strength?: number;
|
|
397
|
+
}
|
|
398
|
+
export interface DensityOverlayOpts {
|
|
399
|
+
colormap?: string;
|
|
400
|
+
/** @range [0, 1] */
|
|
401
|
+
alpha?: number;
|
|
402
|
+
}
|
|
403
|
+
export interface DepthBlurOpts {
|
|
404
|
+
/** @range at least 0 */
|
|
405
|
+
max_blur?: number;
|
|
406
|
+
near_plane?: number;
|
|
407
|
+
far_plane?: number;
|
|
408
|
+
}
|
|
409
|
+
export interface DepthFogOpts {
|
|
410
|
+
/** @range [0, 1] */
|
|
411
|
+
density?: number;
|
|
412
|
+
color?: string;
|
|
413
|
+
near_plane?: number;
|
|
414
|
+
far_plane?: number;
|
|
415
|
+
}
|
|
416
|
+
export interface DeshakeOpts {
|
|
417
|
+
rx?: number;
|
|
418
|
+
ry?: number;
|
|
419
|
+
}
|
|
420
|
+
export interface DetectOpts {
|
|
421
|
+
model: string;
|
|
422
|
+
/** @range [0, 1] */
|
|
423
|
+
threshold?: number;
|
|
424
|
+
classes?: string;
|
|
425
|
+
filter_classes?: string;
|
|
426
|
+
inputSize?: string;
|
|
427
|
+
stride?: number;
|
|
428
|
+
batchSize?: number;
|
|
429
|
+
}
|
|
430
|
+
export interface DialoguenhanceOpts {
|
|
431
|
+
original?: number;
|
|
432
|
+
enhance?: number;
|
|
433
|
+
voice?: number;
|
|
434
|
+
}
|
|
435
|
+
export interface DiarizeOpts {
|
|
436
|
+
/** @range greater than 0 */
|
|
437
|
+
max_speakers?: number;
|
|
438
|
+
/** @range at least 0 */
|
|
439
|
+
min_duration?: number;
|
|
440
|
+
}
|
|
441
|
+
export interface DilationOpts {
|
|
442
|
+
threshold0?: number;
|
|
443
|
+
threshold1?: number;
|
|
444
|
+
threshold2?: number;
|
|
445
|
+
threshold3?: number;
|
|
446
|
+
coordinates?: number;
|
|
447
|
+
}
|
|
448
|
+
export interface DrawSkeletonOpts {
|
|
449
|
+
/** @range greater than 0 */
|
|
450
|
+
line_width?: number;
|
|
451
|
+
/** @range greater than 0 */
|
|
452
|
+
keypoint_radius?: number;
|
|
453
|
+
color?: string;
|
|
454
|
+
/** @range [0, 1] */
|
|
455
|
+
min_confidence?: number;
|
|
456
|
+
show_labels?: boolean;
|
|
457
|
+
}
|
|
458
|
+
export interface DrawboxOpts {
|
|
459
|
+
x?: number | string;
|
|
460
|
+
y?: number | string;
|
|
461
|
+
w?: number | string;
|
|
462
|
+
h?: number | string;
|
|
463
|
+
color?: string;
|
|
464
|
+
t?: string;
|
|
465
|
+
enable?: string;
|
|
466
|
+
}
|
|
467
|
+
export interface DrawgridOpts {
|
|
468
|
+
x?: string;
|
|
469
|
+
y?: string;
|
|
470
|
+
w?: string;
|
|
471
|
+
h?: string;
|
|
472
|
+
color?: string;
|
|
473
|
+
t?: string;
|
|
474
|
+
replace?: number;
|
|
475
|
+
}
|
|
476
|
+
export interface DrawtextOpts {
|
|
477
|
+
text?: string;
|
|
478
|
+
textfile?: string;
|
|
479
|
+
fontfile?: string;
|
|
480
|
+
fontsize?: number | string;
|
|
481
|
+
fontcolor?: string;
|
|
482
|
+
x?: number | string;
|
|
483
|
+
y?: number | string;
|
|
484
|
+
boxcolor?: string;
|
|
485
|
+
borderw?: number;
|
|
486
|
+
shadowcolor?: string;
|
|
487
|
+
shadowx?: number;
|
|
488
|
+
shadowy?: number;
|
|
489
|
+
alpha?: number | string;
|
|
490
|
+
font?: string;
|
|
491
|
+
line_spacing?: number;
|
|
492
|
+
enable?: string;
|
|
493
|
+
expansion?: 'none' | 'normal' | 'strftime';
|
|
494
|
+
}
|
|
495
|
+
export interface DynamicCropOpts {
|
|
496
|
+
/** @range greater than 0 */
|
|
497
|
+
target_aspect_w: number;
|
|
498
|
+
/** @range greater than 0 */
|
|
499
|
+
target_aspect_h: number;
|
|
500
|
+
/** @range [0, 1] */
|
|
501
|
+
smoothing?: number;
|
|
502
|
+
/** @range at least 0 */
|
|
503
|
+
padding?: number;
|
|
504
|
+
subject?: string;
|
|
505
|
+
}
|
|
506
|
+
export interface DynaudnormOpts {
|
|
507
|
+
framelen?: number;
|
|
508
|
+
gausssize?: number;
|
|
509
|
+
peak?: number;
|
|
510
|
+
maxgain?: number;
|
|
511
|
+
targetrms?: number;
|
|
512
|
+
compress?: number;
|
|
513
|
+
threshold?: number;
|
|
514
|
+
}
|
|
515
|
+
export interface EdgedetectOpts {
|
|
516
|
+
low?: number;
|
|
517
|
+
high?: number;
|
|
518
|
+
mode?: 'wires' | 'colormix' | 'canny';
|
|
519
|
+
}
|
|
520
|
+
export interface EqOpts {
|
|
521
|
+
/** @range [-1, 1] */
|
|
522
|
+
brightness?: number;
|
|
523
|
+
/** @range [-1000, 1000] */
|
|
524
|
+
contrast?: number;
|
|
525
|
+
/** @range [0, 3] */
|
|
526
|
+
saturation?: number;
|
|
527
|
+
/** @range [0.1, 10] */
|
|
528
|
+
gamma?: number;
|
|
529
|
+
}
|
|
530
|
+
export interface EqualizerOpts {
|
|
531
|
+
f: number;
|
|
532
|
+
width_type?: 'h' | 'q' | 'o' | 's' | 'k';
|
|
533
|
+
width: number;
|
|
534
|
+
gain: number;
|
|
535
|
+
}
|
|
536
|
+
export interface ErosionOpts {
|
|
537
|
+
threshold0?: number;
|
|
538
|
+
threshold1?: number;
|
|
539
|
+
threshold2?: number;
|
|
540
|
+
threshold3?: number;
|
|
541
|
+
coordinates?: number;
|
|
542
|
+
}
|
|
543
|
+
export interface EstimateDensityOpts {
|
|
544
|
+
model?: string;
|
|
545
|
+
}
|
|
546
|
+
export interface EstimateDepthOpts {
|
|
547
|
+
model?: string;
|
|
548
|
+
}
|
|
549
|
+
export interface EstimatePoseOpts {
|
|
550
|
+
model?: string;
|
|
551
|
+
/** @range [0, 1] */
|
|
552
|
+
threshold?: number;
|
|
553
|
+
/** @range greater than 0 */
|
|
554
|
+
max_persons?: number;
|
|
555
|
+
}
|
|
556
|
+
export interface EstimatePoseDetectionsOpts {
|
|
557
|
+
model: string;
|
|
558
|
+
/** @range at least 0 */
|
|
559
|
+
threshold?: number;
|
|
560
|
+
/** @range at least 0 */
|
|
561
|
+
padding?: number;
|
|
562
|
+
}
|
|
563
|
+
export interface FadeOpts {
|
|
564
|
+
type: 'in' | 'out';
|
|
565
|
+
/** @range at least 0 */
|
|
566
|
+
st?: number;
|
|
567
|
+
/** @range greater than 0 */
|
|
568
|
+
d?: number;
|
|
569
|
+
color?: string;
|
|
570
|
+
alpha?: number;
|
|
571
|
+
}
|
|
572
|
+
export interface FillbordersOpts {
|
|
573
|
+
left?: number;
|
|
574
|
+
right?: number;
|
|
575
|
+
top?: number;
|
|
576
|
+
bottom?: number;
|
|
577
|
+
mode?: 'smear' | 'mirror' | 'fixed' | 'reflect' | 'wrap' | 'fade' | 'margins';
|
|
578
|
+
color?: string;
|
|
579
|
+
}
|
|
580
|
+
export interface FilterAudioEventsOpts {
|
|
581
|
+
include?: string;
|
|
582
|
+
exclude?: string;
|
|
583
|
+
/** @range [0, 1] */
|
|
584
|
+
min_confidence?: number;
|
|
585
|
+
/** @range at least 0 */
|
|
586
|
+
min_duration?: number;
|
|
587
|
+
}
|
|
588
|
+
export interface FilterDetectionsOpts {
|
|
589
|
+
include?: string;
|
|
590
|
+
exclude?: string;
|
|
591
|
+
/** @range [0, 1] */
|
|
592
|
+
min_confidence?: number;
|
|
593
|
+
/** @range [0, 1] */
|
|
594
|
+
min_area?: number;
|
|
595
|
+
/** @range at least 0 */
|
|
596
|
+
min_track_frames?: number;
|
|
597
|
+
attribute?: string;
|
|
598
|
+
attribute_value?: string;
|
|
599
|
+
attribute_absent?: string;
|
|
600
|
+
/** @range at least 0 */
|
|
601
|
+
track_id?: number;
|
|
602
|
+
/** @range at least 0 */
|
|
603
|
+
exclude_track_id?: number;
|
|
604
|
+
}
|
|
605
|
+
export interface FilterPosesOpts {
|
|
606
|
+
/** @range [0, 1] */
|
|
607
|
+
min_score?: number;
|
|
608
|
+
/** @range greater than 0 */
|
|
609
|
+
max_persons?: number;
|
|
610
|
+
}
|
|
611
|
+
export interface FilterScenesOpts {
|
|
612
|
+
/** @range [0, 1] */
|
|
613
|
+
min_confidence?: number;
|
|
614
|
+
}
|
|
615
|
+
export interface FilterSegmentationOpts {
|
|
616
|
+
classes?: string;
|
|
617
|
+
/** @range at least 0 */
|
|
618
|
+
min_area?: number;
|
|
619
|
+
}
|
|
620
|
+
export interface FilterTextOpts {
|
|
621
|
+
/** @range [0, 1] */
|
|
622
|
+
min_confidence?: number;
|
|
623
|
+
pattern?: string;
|
|
624
|
+
}
|
|
625
|
+
export interface FlangerOpts {
|
|
626
|
+
delay?: number;
|
|
627
|
+
depth?: number;
|
|
628
|
+
speed?: number;
|
|
629
|
+
}
|
|
630
|
+
export interface FormatOpts {
|
|
631
|
+
pix_fmts: string;
|
|
632
|
+
}
|
|
633
|
+
export interface FpsOpts {
|
|
634
|
+
/** @range greater than 0 */
|
|
635
|
+
fps: number;
|
|
636
|
+
}
|
|
637
|
+
export interface FrameInterpolateOpts {
|
|
638
|
+
model: string;
|
|
639
|
+
/** @range greater than 0 */
|
|
640
|
+
factor?: number;
|
|
641
|
+
}
|
|
642
|
+
export interface FramestepOpts {
|
|
643
|
+
/** @range at least 1 */
|
|
644
|
+
step: number;
|
|
645
|
+
}
|
|
646
|
+
export interface FreezedetectOpts {
|
|
647
|
+
noise?: number;
|
|
648
|
+
duration?: number;
|
|
649
|
+
}
|
|
650
|
+
export interface GblurOpts {
|
|
651
|
+
/** @range greater than 0 */
|
|
652
|
+
sigma: number;
|
|
653
|
+
}
|
|
654
|
+
export interface GeqOpts {
|
|
655
|
+
r?: string;
|
|
656
|
+
g?: string;
|
|
657
|
+
b?: string;
|
|
658
|
+
a?: string;
|
|
659
|
+
lum_expr?: string;
|
|
660
|
+
}
|
|
661
|
+
export interface HighpassOpts {
|
|
662
|
+
f: number;
|
|
663
|
+
}
|
|
664
|
+
export interface HistogramOpts {
|
|
665
|
+
level_height?: number;
|
|
666
|
+
display_mode?: 'stack' | 'parade' | 'overlay';
|
|
667
|
+
levels_mode?: 'logarithmic' | 'linear';
|
|
668
|
+
}
|
|
669
|
+
export interface Hqdn3dOpts {
|
|
670
|
+
luma_spatial?: number;
|
|
671
|
+
chroma_spatial?: number;
|
|
672
|
+
luma_tmp?: number;
|
|
673
|
+
chroma_tmp?: number;
|
|
674
|
+
}
|
|
675
|
+
export interface HstackOpts {
|
|
676
|
+
shortest?: boolean;
|
|
677
|
+
}
|
|
678
|
+
export interface HueOpts {
|
|
679
|
+
h?: number | string;
|
|
680
|
+
s?: number | string;
|
|
681
|
+
b?: number | string;
|
|
682
|
+
}
|
|
683
|
+
export interface InsertChaptersOpts {
|
|
684
|
+
/** @range at least 0 */
|
|
685
|
+
min_duration?: number;
|
|
686
|
+
format?: string;
|
|
687
|
+
}
|
|
688
|
+
export interface IntersectionDetectionsOpts {
|
|
689
|
+
/** @range [0, 1] */
|
|
690
|
+
iou_threshold?: number;
|
|
691
|
+
}
|
|
692
|
+
export interface LagfunOpts {
|
|
693
|
+
decay?: number;
|
|
694
|
+
planes?: number;
|
|
695
|
+
}
|
|
696
|
+
export interface LenscorrectionOpts {
|
|
697
|
+
cx?: number;
|
|
698
|
+
cy?: number;
|
|
699
|
+
k1?: number;
|
|
700
|
+
k2?: number;
|
|
701
|
+
i?: 'nearest' | 'bilinear';
|
|
702
|
+
}
|
|
703
|
+
export interface LoopOpts {
|
|
704
|
+
loop: number;
|
|
705
|
+
size?: number;
|
|
706
|
+
start?: number;
|
|
707
|
+
}
|
|
708
|
+
export interface LoudnormOpts {
|
|
709
|
+
/** @range [-70, -5] */
|
|
710
|
+
I?: number;
|
|
711
|
+
/** @range [-9, 0] */
|
|
712
|
+
TP?: number;
|
|
713
|
+
/** @range [1, 50] */
|
|
714
|
+
LRA?: number;
|
|
715
|
+
}
|
|
716
|
+
export interface LowpassOpts {
|
|
717
|
+
f: number;
|
|
718
|
+
}
|
|
719
|
+
export interface Lut1dOpts {
|
|
720
|
+
file: string;
|
|
721
|
+
}
|
|
722
|
+
export interface Lut3dOpts {
|
|
723
|
+
file: string;
|
|
724
|
+
}
|
|
725
|
+
export interface MaskBlurOpts {
|
|
726
|
+
/** @range at least 0 */
|
|
727
|
+
radius?: number;
|
|
728
|
+
/** @range at least 0 */
|
|
729
|
+
sigma?: number;
|
|
730
|
+
invert?: boolean;
|
|
731
|
+
}
|
|
732
|
+
export interface MaskColorGradeOpts {
|
|
733
|
+
saturation?: number;
|
|
734
|
+
brightness?: number;
|
|
735
|
+
contrast?: number;
|
|
736
|
+
hue?: number;
|
|
737
|
+
invert?: boolean;
|
|
738
|
+
}
|
|
739
|
+
export interface MaskCompositeOpts {
|
|
740
|
+
mode?: 'replace' | 'overlay' | 'multiply';
|
|
741
|
+
background?: string;
|
|
742
|
+
/** @range [0, 1] */
|
|
743
|
+
opacity?: number;
|
|
744
|
+
}
|
|
745
|
+
export interface MinterpolateOpts {
|
|
746
|
+
fps?: number;
|
|
747
|
+
mi_mode?: 'dup' | 'blend' | 'mci';
|
|
748
|
+
mc_mode?: 'obmc' | 'aobmc';
|
|
749
|
+
me_mode?: 'bidir' | 'bilat';
|
|
750
|
+
me?: 'esa' | 'tss' | 'tdls' | 'ntss' | 'fss' | 'ds' | 'hexbs' | 'epzs' | 'umh';
|
|
751
|
+
mb_size?: number;
|
|
752
|
+
search_param?: number;
|
|
753
|
+
scd?: 'none' | 'fdiff';
|
|
754
|
+
scd_threshold?: number;
|
|
755
|
+
}
|
|
756
|
+
export interface MpdecimateOpts {
|
|
757
|
+
max?: number;
|
|
758
|
+
lo?: number;
|
|
759
|
+
hi?: number;
|
|
760
|
+
frac?: number;
|
|
761
|
+
}
|
|
762
|
+
export interface NegateOpts {
|
|
763
|
+
negate?: number;
|
|
764
|
+
alpha?: number;
|
|
765
|
+
}
|
|
766
|
+
export interface NlmeansOpts {
|
|
767
|
+
s?: number;
|
|
768
|
+
}
|
|
769
|
+
export interface NoiseOpts {
|
|
770
|
+
/** @range [0, 100] */
|
|
771
|
+
alls?: number;
|
|
772
|
+
allf?: string;
|
|
773
|
+
seed?: number;
|
|
774
|
+
}
|
|
775
|
+
export interface OverlayOpts {
|
|
776
|
+
x?: number | string;
|
|
777
|
+
y?: number | string;
|
|
778
|
+
/** @range [0, 1] */
|
|
779
|
+
alpha?: number;
|
|
780
|
+
}
|
|
781
|
+
export interface OverlayTranslationOpts {
|
|
782
|
+
target_language: string;
|
|
783
|
+
font_family?: string;
|
|
784
|
+
/** @range greater than 0 */
|
|
785
|
+
font_size?: number;
|
|
786
|
+
background_color?: string;
|
|
787
|
+
}
|
|
788
|
+
export interface PadOpts {
|
|
789
|
+
/** @range greater than 0 */
|
|
790
|
+
w?: number | string;
|
|
791
|
+
/** @range greater than 0 */
|
|
792
|
+
h?: number | string;
|
|
793
|
+
x?: number | string;
|
|
794
|
+
y?: number | string;
|
|
795
|
+
color?: string;
|
|
796
|
+
}
|
|
797
|
+
export interface PalettegenOpts {
|
|
798
|
+
max_colors?: number;
|
|
799
|
+
reserve_transparent?: number;
|
|
800
|
+
stats_mode?: 'full' | 'diff' | 'single';
|
|
801
|
+
}
|
|
802
|
+
export interface PaletteuseOpts {
|
|
803
|
+
dither?: 'bayer' | 'heckbert' | 'floyd_steinberg' | 'sierra2' | 'sierra2_4a' | 'sierra3' | 'burkes' | 'atkinson' | 'none';
|
|
804
|
+
bayer_scale?: number;
|
|
805
|
+
diff_mode?: 'rectangle' | 'none';
|
|
806
|
+
new?: number;
|
|
807
|
+
}
|
|
808
|
+
export interface PanOpts {
|
|
809
|
+
layout: string;
|
|
810
|
+
}
|
|
811
|
+
export interface ParallaxOpts {
|
|
812
|
+
/** @range at least 0 */
|
|
813
|
+
amplitude?: number;
|
|
814
|
+
direction?: 'horizontal' | 'vertical' | 'zoom';
|
|
815
|
+
duration?: number;
|
|
816
|
+
}
|
|
817
|
+
export interface PerspectiveOpts {
|
|
818
|
+
x0?: string;
|
|
819
|
+
y0?: string;
|
|
820
|
+
x1?: string;
|
|
821
|
+
y1?: string;
|
|
822
|
+
x2?: string;
|
|
823
|
+
y2?: string;
|
|
824
|
+
x3?: string;
|
|
825
|
+
y3?: string;
|
|
826
|
+
interpolation?: 'linear' | 'cubic';
|
|
827
|
+
sense?: 'source' | 'destination';
|
|
828
|
+
}
|
|
829
|
+
export interface PhotosensitivityOpts {
|
|
830
|
+
threshold?: number;
|
|
831
|
+
frames?: number;
|
|
832
|
+
skip?: number;
|
|
833
|
+
}
|
|
834
|
+
export interface PseudocolorOpts {
|
|
835
|
+
preset?: string;
|
|
836
|
+
c0?: string;
|
|
837
|
+
c1?: string;
|
|
838
|
+
c2?: string;
|
|
839
|
+
c3?: string;
|
|
840
|
+
index?: number;
|
|
841
|
+
opacity?: number;
|
|
842
|
+
}
|
|
843
|
+
export interface PsnrOpts {
|
|
844
|
+
stats_file?: string;
|
|
845
|
+
}
|
|
846
|
+
export interface RecognizeTextOpts {
|
|
847
|
+
model?: string;
|
|
848
|
+
/** @range [0, 1] */
|
|
849
|
+
threshold?: number;
|
|
850
|
+
}
|
|
851
|
+
export interface RecognizeTextInOpts {
|
|
852
|
+
model: string;
|
|
853
|
+
/** @range [0, 1] */
|
|
854
|
+
threshold?: number;
|
|
855
|
+
/** @range at least 0 */
|
|
856
|
+
padding?: number;
|
|
857
|
+
}
|
|
858
|
+
export interface RedactOpts {
|
|
859
|
+
mode?: 'blur' | 'pixelate' | 'black';
|
|
860
|
+
/** @range at least 0 */
|
|
861
|
+
radius?: number;
|
|
862
|
+
}
|
|
863
|
+
export interface RedactTextOpts {
|
|
864
|
+
mode?: 'blur' | 'pixelate' | 'black';
|
|
865
|
+
/** @range at least 0 */
|
|
866
|
+
radius?: number;
|
|
867
|
+
/** @range at least 0 */
|
|
868
|
+
padding?: number;
|
|
869
|
+
}
|
|
870
|
+
export interface RedactTracksOpts {
|
|
871
|
+
tracks: string;
|
|
872
|
+
}
|
|
873
|
+
export interface RenderHeatmapOpts {
|
|
874
|
+
colormap?: string;
|
|
875
|
+
/** @range [0, 1] */
|
|
876
|
+
alpha?: number;
|
|
877
|
+
/** @range greater than 0 */
|
|
878
|
+
radius?: number;
|
|
879
|
+
blur?: number;
|
|
880
|
+
}
|
|
881
|
+
export interface ResizeOpts {
|
|
882
|
+
w: number;
|
|
883
|
+
h: number;
|
|
884
|
+
}
|
|
885
|
+
export interface RgbashiftOpts {
|
|
886
|
+
rh?: number;
|
|
887
|
+
rv?: number;
|
|
888
|
+
gh?: number;
|
|
889
|
+
gv?: number;
|
|
890
|
+
bh?: number;
|
|
891
|
+
bv?: number;
|
|
892
|
+
ah?: number;
|
|
893
|
+
av?: number;
|
|
894
|
+
edge?: 'smear' | 'wrap';
|
|
895
|
+
enable?: string;
|
|
896
|
+
}
|
|
897
|
+
export interface RotateOpts {
|
|
898
|
+
angle?: number | string;
|
|
899
|
+
a?: number | string;
|
|
900
|
+
fillcolor?: string;
|
|
901
|
+
bilinear?: number;
|
|
902
|
+
}
|
|
903
|
+
export interface RubberbandOpts {
|
|
904
|
+
tempo?: number;
|
|
905
|
+
pitch?: number;
|
|
906
|
+
transients?: 'crisp' | 'mixed' | 'smooth';
|
|
907
|
+
detector?: 'compound' | 'percussive' | 'soft';
|
|
908
|
+
phase?: 'laminar' | 'independent';
|
|
909
|
+
window?: 'standard' | 'short' | 'long';
|
|
910
|
+
smoothing?: 'off' | 'on';
|
|
911
|
+
formant?: 'shifted' | 'preserved';
|
|
912
|
+
pitchq?: 'quality' | 'speed' | 'consistency';
|
|
913
|
+
channels?: 'apart' | 'together';
|
|
914
|
+
}
|
|
915
|
+
export interface ScaleOpts {
|
|
916
|
+
/** @range greater than 0 */
|
|
917
|
+
w: number;
|
|
918
|
+
/** @range greater than 0 */
|
|
919
|
+
h: number;
|
|
920
|
+
force_original_aspect_ratio?: string;
|
|
921
|
+
flags?: string;
|
|
922
|
+
}
|
|
923
|
+
export interface ScaleCudaOpts {
|
|
924
|
+
w?: string;
|
|
925
|
+
h?: string;
|
|
926
|
+
interp_algo?: 'nearest' | 'bilinear' | 'bicubic' | 'lanczos';
|
|
927
|
+
}
|
|
928
|
+
export interface SceneColorGradeOpts {
|
|
929
|
+
preset?: string;
|
|
930
|
+
/** @range [0, 1] */
|
|
931
|
+
intensity?: number;
|
|
932
|
+
/** @range at least 0 */
|
|
933
|
+
transition_frames?: number;
|
|
934
|
+
}
|
|
935
|
+
export interface SegmentOpts {
|
|
936
|
+
model?: string;
|
|
937
|
+
/** @range [0, 1] */
|
|
938
|
+
threshold?: number;
|
|
939
|
+
pointsPerSide?: number;
|
|
940
|
+
}
|
|
941
|
+
export interface SelectOpts {
|
|
942
|
+
expr: string;
|
|
943
|
+
}
|
|
944
|
+
export interface SelectivecolorOpts {
|
|
945
|
+
correction_method?: 'absolute' | 'relative';
|
|
946
|
+
reds?: string;
|
|
947
|
+
yellows?: string;
|
|
948
|
+
greens?: string;
|
|
949
|
+
cyans?: string;
|
|
950
|
+
blues?: string;
|
|
951
|
+
magentas?: string;
|
|
952
|
+
whites?: string;
|
|
953
|
+
neutrals?: string;
|
|
954
|
+
blacks?: string;
|
|
955
|
+
}
|
|
956
|
+
export interface SendcmdOpts {
|
|
957
|
+
filename?: string;
|
|
958
|
+
commands?: string;
|
|
959
|
+
}
|
|
960
|
+
export interface SetdarOpts {
|
|
961
|
+
dar: string;
|
|
962
|
+
}
|
|
963
|
+
export interface SetptsOpts {
|
|
964
|
+
expr: string;
|
|
965
|
+
}
|
|
966
|
+
export interface SetsarOpts {
|
|
967
|
+
sar: string;
|
|
968
|
+
}
|
|
969
|
+
export interface ShowcqtOpts {
|
|
970
|
+
s?: string;
|
|
971
|
+
fps?: number;
|
|
972
|
+
bar_h?: number;
|
|
973
|
+
axis_h?: number;
|
|
974
|
+
sono_h?: number;
|
|
975
|
+
fullhd?: number;
|
|
976
|
+
sono_v?: string;
|
|
977
|
+
bar_v?: string;
|
|
978
|
+
count?: number;
|
|
979
|
+
fcount?: number;
|
|
980
|
+
fontcolor?: string;
|
|
981
|
+
font?: string;
|
|
982
|
+
fontsize?: number;
|
|
983
|
+
}
|
|
984
|
+
export interface ShowspectrumOpts {
|
|
985
|
+
s?: string;
|
|
986
|
+
mode?: 'combined' | 'separate';
|
|
987
|
+
slide?: 'replace' | 'scroll' | 'fullframe' | 'rscroll';
|
|
988
|
+
color?: string;
|
|
989
|
+
scale?: 'lin' | 'log' | 'sqrt' | 'cbrt' | '5thrt' | '4thrt';
|
|
990
|
+
fscale?: 'lin' | 'log';
|
|
991
|
+
saturation?: number;
|
|
992
|
+
win_func?: string;
|
|
993
|
+
orientation?: 'vertical' | 'horizontal';
|
|
994
|
+
overlap?: number;
|
|
995
|
+
gain?: number;
|
|
996
|
+
data?: 'magnitude' | 'phase' | 'uphase';
|
|
997
|
+
rotation?: number;
|
|
998
|
+
start?: number;
|
|
999
|
+
stop?: number;
|
|
1000
|
+
fps?: number;
|
|
1001
|
+
legend?: number;
|
|
1002
|
+
}
|
|
1003
|
+
export interface ShowwavesOpts {
|
|
1004
|
+
s?: string;
|
|
1005
|
+
mode?: 'point' | 'line' | 'p2p' | 'cline';
|
|
1006
|
+
rate?: number;
|
|
1007
|
+
n?: number;
|
|
1008
|
+
colors?: string;
|
|
1009
|
+
scale?: 'lin' | 'log' | 'sqrt' | 'cbrt' | '5thrt';
|
|
1010
|
+
draw?: 'full' | 'scale';
|
|
1011
|
+
split_channels?: number;
|
|
1012
|
+
}
|
|
1013
|
+
export interface SidechaincompressOpts {
|
|
1014
|
+
threshold?: number;
|
|
1015
|
+
ratio?: number;
|
|
1016
|
+
attack?: number;
|
|
1017
|
+
release?: number;
|
|
1018
|
+
level_sc?: number;
|
|
1019
|
+
}
|
|
1020
|
+
export interface SilencedetectOpts {
|
|
1021
|
+
noise?: string;
|
|
1022
|
+
d?: number;
|
|
1023
|
+
}
|
|
1024
|
+
export interface SilenceremoveOpts {
|
|
1025
|
+
stop_periods?: number;
|
|
1026
|
+
stop_duration?: number;
|
|
1027
|
+
stop_threshold?: string;
|
|
1028
|
+
}
|
|
1029
|
+
export interface SlideshowOpts {
|
|
1030
|
+
transition?: string;
|
|
1031
|
+
duration?: number;
|
|
1032
|
+
segment_duration?: number;
|
|
1033
|
+
}
|
|
1034
|
+
export interface SpeechnormOpts {
|
|
1035
|
+
peak?: number;
|
|
1036
|
+
expansion?: number;
|
|
1037
|
+
compression?: number;
|
|
1038
|
+
threshold?: number;
|
|
1039
|
+
raise?: number;
|
|
1040
|
+
fall?: number;
|
|
1041
|
+
}
|
|
1042
|
+
export interface SsimOpts {
|
|
1043
|
+
stats_file?: string;
|
|
1044
|
+
}
|
|
1045
|
+
export interface StereowidenOpts {
|
|
1046
|
+
delay?: number;
|
|
1047
|
+
feedback?: number;
|
|
1048
|
+
crossfeed?: number;
|
|
1049
|
+
}
|
|
1050
|
+
export interface SubtitlesOpts {
|
|
1051
|
+
filename: string;
|
|
1052
|
+
fontsdir?: string;
|
|
1053
|
+
force_style?: string;
|
|
1054
|
+
charenc?: string;
|
|
1055
|
+
stream_index?: number;
|
|
1056
|
+
}
|
|
1057
|
+
export interface SurroundOpts {
|
|
1058
|
+
chl_out?: string;
|
|
1059
|
+
chl_in?: string;
|
|
1060
|
+
level_in?: number;
|
|
1061
|
+
level_out?: number;
|
|
1062
|
+
lfe?: boolean;
|
|
1063
|
+
lfe_low?: number;
|
|
1064
|
+
lfe_high?: number;
|
|
1065
|
+
fc_in?: number;
|
|
1066
|
+
fc_out?: number;
|
|
1067
|
+
fl_in?: number;
|
|
1068
|
+
fl_out?: number;
|
|
1069
|
+
fr_in?: number;
|
|
1070
|
+
fr_out?: number;
|
|
1071
|
+
bl_in?: number;
|
|
1072
|
+
bl_out?: number;
|
|
1073
|
+
br_in?: number;
|
|
1074
|
+
br_out?: number;
|
|
1075
|
+
lfe_in?: number;
|
|
1076
|
+
lfe_out?: number;
|
|
1077
|
+
}
|
|
1078
|
+
export interface TblendOpts {
|
|
1079
|
+
all_mode?: string;
|
|
1080
|
+
all_opacity?: number;
|
|
1081
|
+
all_expr?: string;
|
|
1082
|
+
}
|
|
1083
|
+
export interface ThumbnailOpts {
|
|
1084
|
+
n?: number;
|
|
1085
|
+
}
|
|
1086
|
+
export interface TileOpts {
|
|
1087
|
+
layout?: string;
|
|
1088
|
+
nb_frames?: number;
|
|
1089
|
+
padding?: number;
|
|
1090
|
+
margin?: number;
|
|
1091
|
+
color?: string;
|
|
1092
|
+
}
|
|
1093
|
+
export interface TmixOpts {
|
|
1094
|
+
frames?: number;
|
|
1095
|
+
weights?: string;
|
|
1096
|
+
scale?: number;
|
|
1097
|
+
planes?: number;
|
|
1098
|
+
}
|
|
1099
|
+
export interface TpadOpts {
|
|
1100
|
+
start?: number;
|
|
1101
|
+
stop?: number;
|
|
1102
|
+
start_mode?: 'add' | 'clone';
|
|
1103
|
+
stop_mode?: 'add' | 'clone';
|
|
1104
|
+
start_duration?: number;
|
|
1105
|
+
stop_duration?: number;
|
|
1106
|
+
color?: string;
|
|
1107
|
+
}
|
|
1108
|
+
export interface TrackOpts {
|
|
1109
|
+
algorithm: 'bytetrack' | 'sort' | 'deepsort';
|
|
1110
|
+
}
|
|
1111
|
+
export interface TranscribeOpts {
|
|
1112
|
+
model?: string;
|
|
1113
|
+
language?: string;
|
|
1114
|
+
}
|
|
1115
|
+
export interface TransposeOpts {
|
|
1116
|
+
/** @range [0, 3] */
|
|
1117
|
+
dir: number;
|
|
1118
|
+
}
|
|
1119
|
+
export interface TrebleOpts {
|
|
1120
|
+
gain: number;
|
|
1121
|
+
frequency?: number;
|
|
1122
|
+
width_type?: 'h' | 'q' | 'o' | 's' | 'k';
|
|
1123
|
+
width?: number;
|
|
1124
|
+
}
|
|
1125
|
+
export interface TremoloOpts {
|
|
1126
|
+
f?: number;
|
|
1127
|
+
d?: number;
|
|
1128
|
+
}
|
|
1129
|
+
export interface TrimOpts {
|
|
1130
|
+
/** @range at least 0 */
|
|
1131
|
+
start?: number;
|
|
1132
|
+
/** @range greater than 0 */
|
|
1133
|
+
end?: number;
|
|
1134
|
+
}
|
|
1135
|
+
export interface UnsharpOpts {
|
|
1136
|
+
luma_msize_x?: number;
|
|
1137
|
+
luma_msize_y?: number;
|
|
1138
|
+
luma_amount?: number;
|
|
1139
|
+
}
|
|
1140
|
+
export interface UpscaleOpts {
|
|
1141
|
+
model: string;
|
|
1142
|
+
/** @range greater than 0 */
|
|
1143
|
+
scale?: number;
|
|
1144
|
+
/** @range greater than 0 */
|
|
1145
|
+
tileSize?: number;
|
|
1146
|
+
}
|
|
1147
|
+
export interface V360Opts {
|
|
1148
|
+
input?: string;
|
|
1149
|
+
output?: string;
|
|
1150
|
+
interp?: string;
|
|
1151
|
+
w?: number;
|
|
1152
|
+
h?: number;
|
|
1153
|
+
yaw?: number;
|
|
1154
|
+
pitch?: number;
|
|
1155
|
+
roll?: number;
|
|
1156
|
+
d_fov?: number;
|
|
1157
|
+
id_fov?: number;
|
|
1158
|
+
h_flip?: boolean;
|
|
1159
|
+
v_flip?: boolean;
|
|
1160
|
+
in_stereo?: string;
|
|
1161
|
+
out_stereo?: string;
|
|
1162
|
+
}
|
|
1163
|
+
export interface VectorscopeOpts {
|
|
1164
|
+
mode?: 'gray' | 'tint' | 'color' | 'color2' | 'color3' | 'color4' | 'color5';
|
|
1165
|
+
intensity?: number;
|
|
1166
|
+
envelope?: number;
|
|
1167
|
+
}
|
|
1168
|
+
export interface VibratoOpts {
|
|
1169
|
+
f?: number;
|
|
1170
|
+
d?: number;
|
|
1171
|
+
}
|
|
1172
|
+
export interface VidstabOpts {
|
|
1173
|
+
shakiness?: number;
|
|
1174
|
+
smoothing?: number;
|
|
1175
|
+
}
|
|
1176
|
+
export interface VidstabdetectOpts {
|
|
1177
|
+
shakiness?: number;
|
|
1178
|
+
accuracy?: number;
|
|
1179
|
+
stepsize?: number;
|
|
1180
|
+
mincontrast?: number;
|
|
1181
|
+
result?: string;
|
|
1182
|
+
}
|
|
1183
|
+
export interface VidstabtransformOpts {
|
|
1184
|
+
input?: string;
|
|
1185
|
+
smoothing?: number;
|
|
1186
|
+
optalgo?: 'opt' | 'gauss' | 'avg';
|
|
1187
|
+
maxshift?: number;
|
|
1188
|
+
maxangle?: number;
|
|
1189
|
+
crop?: 'keep' | 'black';
|
|
1190
|
+
zoom?: number;
|
|
1191
|
+
optzoom?: number;
|
|
1192
|
+
interpol?: 'no' | 'linear' | 'bilinear' | 'bicubic';
|
|
1193
|
+
}
|
|
1194
|
+
export interface VignetteOpts {
|
|
1195
|
+
/** @range [0, 1.5707963267948966] */
|
|
1196
|
+
angle?: number;
|
|
1197
|
+
}
|
|
1198
|
+
export interface VolumeOpts {
|
|
1199
|
+
/** @range at least 0 */
|
|
1200
|
+
volume: number;
|
|
1201
|
+
}
|
|
1202
|
+
export interface VstackOpts {
|
|
1203
|
+
shortest?: boolean;
|
|
1204
|
+
}
|
|
1205
|
+
export interface WaveformOpts {
|
|
1206
|
+
mode?: 'row' | 'column' | 'color' | 'color2' | 'acolor';
|
|
1207
|
+
intensity?: number;
|
|
1208
|
+
mirror?: number;
|
|
1209
|
+
}
|
|
1210
|
+
export interface WeightedDetectionsOpts {
|
|
1211
|
+
/** @range at least 0 */
|
|
1212
|
+
weight_a?: number;
|
|
1213
|
+
/** @range at least 0 */
|
|
1214
|
+
weight_b?: number;
|
|
1215
|
+
}
|
|
1216
|
+
export interface XfadeOpts {
|
|
1217
|
+
transition?: string;
|
|
1218
|
+
duration?: number;
|
|
1219
|
+
offset?: number;
|
|
1220
|
+
}
|
|
1221
|
+
export interface XstackOpts {
|
|
1222
|
+
layout?: string;
|
|
1223
|
+
fill?: string;
|
|
1224
|
+
}
|
|
1225
|
+
export interface ZoneOpts {
|
|
1226
|
+
polygon?: string;
|
|
1227
|
+
anchor?: 'centroid' | 'bottom_center' | 'bbox';
|
|
1228
|
+
invert?: boolean;
|
|
1229
|
+
attribute?: string;
|
|
1230
|
+
}
|
|
1231
|
+
export interface ZoompanOpts {
|
|
1232
|
+
z?: string;
|
|
1233
|
+
x?: string;
|
|
1234
|
+
y?: string;
|
|
1235
|
+
d: number;
|
|
1236
|
+
fps?: number;
|
|
1237
|
+
s?: string;
|
|
1238
|
+
}
|
|
1239
|
+
/** @internal */
|
|
1240
|
+
export declare function mk(sort: SortTag, id: number, g: Graph): any;
|
|
1241
|
+
/** @internal — drop undefined so absent opts don't reach the wire. */
|
|
1242
|
+
export declare function _p(opts: object): Record<string, ParamValue>;
|
|
1243
|
+
export interface VideoStream {
|
|
1244
|
+
alphaextract(): VideoStream;
|
|
1245
|
+
anchorGraphic(b: PoseStream, opts: AnchorGraphicOpts): VideoStream;
|
|
1246
|
+
annotate(b: DetectionStream, opts?: AnnotateOpts): VideoStream;
|
|
1247
|
+
autoEnhance(opts: AutoEnhanceOpts): VideoStream;
|
|
1248
|
+
backgroundkey(opts?: BackgroundkeyOpts): VideoStream;
|
|
1249
|
+
bilateral(opts?: BilateralOpts): VideoStream;
|
|
1250
|
+
blackdetect(opts?: BlackdetectOpts): VideoStream;
|
|
1251
|
+
blend(b: VideoStream, opts?: BlendOpts): VideoStream;
|
|
1252
|
+
bm3d(opts?: Bm3dOpts): VideoStream;
|
|
1253
|
+
boxblur(opts?: BoxblurOpts): VideoStream;
|
|
1254
|
+
cas(opts?: CasOpts): VideoStream;
|
|
1255
|
+
chromakey(opts: ChromakeyOpts): VideoStream;
|
|
1256
|
+
classifyDetections(b: DetectionStream, opts: ClassifyDetectionsOpts): DetectionStream;
|
|
1257
|
+
classifyScene(opts?: ClassifySceneOpts): SceneStream;
|
|
1258
|
+
colorCorrect(opts: ColorCorrectOpts): VideoStream;
|
|
1259
|
+
colorbalance(opts?: ColorbalanceOpts): VideoStream;
|
|
1260
|
+
colorchannelmixer(opts?: ColorchannelmixerOpts): VideoStream;
|
|
1261
|
+
colorgrade(opts?: ColorgradeOpts): VideoStream;
|
|
1262
|
+
colorhold(opts: ColorholdOpts): VideoStream;
|
|
1263
|
+
colorize(opts: ColorizeOpts): VideoStream;
|
|
1264
|
+
colorkey(opts: ColorkeyOpts): VideoStream;
|
|
1265
|
+
colorspace(opts?: ColorspaceOpts): VideoStream;
|
|
1266
|
+
colortemperature(opts: ColortemperatureOpts): VideoStream;
|
|
1267
|
+
concat(rest: VideoStream[], opts?: ConcatOpts): VideoStream;
|
|
1268
|
+
crop(opts?: CropOpts): VideoStream;
|
|
1269
|
+
curves(opts: CurvesOpts): VideoStream;
|
|
1270
|
+
deband(opts?: DebandOpts): VideoStream;
|
|
1271
|
+
deblock(opts?: DeblockOpts): VideoStream;
|
|
1272
|
+
deblur(opts: DeblurOpts): VideoStream;
|
|
1273
|
+
deflicker(opts?: DeflickerOpts): VideoStream;
|
|
1274
|
+
deinterlace(opts: DeinterlaceOpts): VideoStream;
|
|
1275
|
+
delogo(opts: DelogoOpts): VideoStream;
|
|
1276
|
+
denoise(opts: DenoiseOpts): VideoStream;
|
|
1277
|
+
denoiseHqdn3d(opts?: DenoiseHqdn3dOpts): VideoStream;
|
|
1278
|
+
densityOverlay(b: DensityStream, opts?: DensityOverlayOpts): VideoStream;
|
|
1279
|
+
depthBlur(b: DepthStream, opts?: DepthBlurOpts): VideoStream;
|
|
1280
|
+
depthFog(b: DepthStream, opts?: DepthFogOpts): VideoStream;
|
|
1281
|
+
deshake(opts?: DeshakeOpts): VideoStream;
|
|
1282
|
+
detect(opts: DetectOpts): DetectionStream;
|
|
1283
|
+
dilation(opts?: DilationOpts): VideoStream;
|
|
1284
|
+
drawSkeleton(b: PoseStream, opts?: DrawSkeletonOpts): VideoStream;
|
|
1285
|
+
drawbox(opts?: DrawboxOpts): VideoStream;
|
|
1286
|
+
drawgrid(opts?: DrawgridOpts): VideoStream;
|
|
1287
|
+
drawtext(opts?: DrawtextOpts): VideoStream;
|
|
1288
|
+
dynamicCrop(b: DetectionStream, opts: DynamicCropOpts): VideoStream;
|
|
1289
|
+
edgedetect(opts?: EdgedetectOpts): VideoStream;
|
|
1290
|
+
eq(opts?: EqOpts): VideoStream;
|
|
1291
|
+
erosion(opts?: ErosionOpts): VideoStream;
|
|
1292
|
+
estimateDensity(opts?: EstimateDensityOpts): DensityStream;
|
|
1293
|
+
estimateDepth(opts?: EstimateDepthOpts): DepthStream;
|
|
1294
|
+
estimatePose(opts?: EstimatePoseOpts): PoseStream;
|
|
1295
|
+
estimatePoseDetections(b: DetectionStream, opts: EstimatePoseDetectionsOpts): PoseStream;
|
|
1296
|
+
fade(opts: FadeOpts): VideoStream;
|
|
1297
|
+
fillborders(opts?: FillbordersOpts): VideoStream;
|
|
1298
|
+
format(opts: FormatOpts): VideoStream;
|
|
1299
|
+
fps(opts: FpsOpts): VideoStream;
|
|
1300
|
+
frameInterpolate(opts: FrameInterpolateOpts): VideoStream;
|
|
1301
|
+
framestep(opts: FramestepOpts): VideoStream;
|
|
1302
|
+
freezedetect(opts?: FreezedetectOpts): VideoStream;
|
|
1303
|
+
gblur(opts: GblurOpts): VideoStream;
|
|
1304
|
+
geq(opts?: GeqOpts): VideoStream;
|
|
1305
|
+
hflip(): VideoStream;
|
|
1306
|
+
histogram(opts?: HistogramOpts): VideoStream;
|
|
1307
|
+
hqdn3d(opts?: Hqdn3dOpts): VideoStream;
|
|
1308
|
+
hstack(rest: VideoStream[], opts?: HstackOpts): VideoStream;
|
|
1309
|
+
hue(opts?: HueOpts): VideoStream;
|
|
1310
|
+
hwdownload(): VideoStream;
|
|
1311
|
+
hwupload(): VideoStream;
|
|
1312
|
+
hwuploadCuda(): VideoStream;
|
|
1313
|
+
lagfun(opts?: LagfunOpts): VideoStream;
|
|
1314
|
+
lenscorrection(opts?: LenscorrectionOpts): VideoStream;
|
|
1315
|
+
loop(opts: LoopOpts): VideoStream;
|
|
1316
|
+
lut1d(opts: Lut1dOpts): VideoStream;
|
|
1317
|
+
lut3d(opts: Lut3dOpts): VideoStream;
|
|
1318
|
+
maskBlur(b: SegmentationStream, opts?: MaskBlurOpts): VideoStream;
|
|
1319
|
+
maskColorGrade(b: SegmentationStream, opts?: MaskColorGradeOpts): VideoStream;
|
|
1320
|
+
maskComposite(b: SegmentationStream, opts?: MaskCompositeOpts): VideoStream;
|
|
1321
|
+
maskedmerge(b: VideoStream): VideoStream;
|
|
1322
|
+
minterpolate(opts?: MinterpolateOpts): VideoStream;
|
|
1323
|
+
mpdecimate(opts?: MpdecimateOpts): VideoStream;
|
|
1324
|
+
negate(opts?: NegateOpts): VideoStream;
|
|
1325
|
+
nlmeans(opts?: NlmeansOpts): VideoStream;
|
|
1326
|
+
noise(opts?: NoiseOpts): VideoStream;
|
|
1327
|
+
overlay(b: VideoStream, opts?: OverlayOpts): VideoStream;
|
|
1328
|
+
overlayTranslation(b: TextStream, opts: OverlayTranslationOpts): VideoStream;
|
|
1329
|
+
pad(opts?: PadOpts): VideoStream;
|
|
1330
|
+
palettegen(opts?: PalettegenOpts): VideoStream;
|
|
1331
|
+
paletteuse(opts?: PaletteuseOpts): VideoStream;
|
|
1332
|
+
parallax(b: DepthStream, opts?: ParallaxOpts): VideoStream;
|
|
1333
|
+
perspective(opts?: PerspectiveOpts): VideoStream;
|
|
1334
|
+
photosensitivity(opts?: PhotosensitivityOpts): VideoStream;
|
|
1335
|
+
pseudocolor(opts?: PseudocolorOpts): VideoStream;
|
|
1336
|
+
psnr(opts?: PsnrOpts): VideoStream;
|
|
1337
|
+
recognizeText(opts?: RecognizeTextOpts): TextStream;
|
|
1338
|
+
recognizeTextIn(b: DetectionStream, opts: RecognizeTextInOpts): TextStream;
|
|
1339
|
+
redact(b: DetectionStream, opts?: RedactOpts): VideoStream;
|
|
1340
|
+
redactText(b: TextStream, opts?: RedactTextOpts): VideoStream;
|
|
1341
|
+
redactTracks(opts: RedactTracksOpts): VideoStream;
|
|
1342
|
+
renderHeatmap(b: DensityStream, opts?: RenderHeatmapOpts): VideoStream;
|
|
1343
|
+
resize(opts: ResizeOpts): VideoStream;
|
|
1344
|
+
reverse(): VideoStream;
|
|
1345
|
+
rgbashift(opts?: RgbashiftOpts): VideoStream;
|
|
1346
|
+
rotate(opts?: RotateOpts): VideoStream;
|
|
1347
|
+
scale(opts: ScaleOpts): VideoStream;
|
|
1348
|
+
scale2ref(b: VideoStream): VideoStream;
|
|
1349
|
+
scaleCuda(opts?: ScaleCudaOpts): VideoStream;
|
|
1350
|
+
sceneColorGrade(b: SceneStream, opts?: SceneColorGradeOpts): VideoStream;
|
|
1351
|
+
segment(opts?: SegmentOpts): SegmentationStream;
|
|
1352
|
+
select(opts: SelectOpts): VideoStream;
|
|
1353
|
+
selectivecolor(opts?: SelectivecolorOpts): VideoStream;
|
|
1354
|
+
sendcmd(opts?: SendcmdOpts): VideoStream;
|
|
1355
|
+
setdar(opts: SetdarOpts): VideoStream;
|
|
1356
|
+
setpts(opts: SetptsOpts): VideoStream;
|
|
1357
|
+
setsar(opts: SetsarOpts): VideoStream;
|
|
1358
|
+
slideshow(rest: VideoStream[], opts?: SlideshowOpts): VideoStream;
|
|
1359
|
+
ssim(opts?: SsimOpts): VideoStream;
|
|
1360
|
+
subtitles(opts: SubtitlesOpts): VideoStream;
|
|
1361
|
+
tblend(opts?: TblendOpts): VideoStream;
|
|
1362
|
+
thumbnail(opts?: ThumbnailOpts): VideoStream;
|
|
1363
|
+
tile(opts?: TileOpts): VideoStream;
|
|
1364
|
+
tmix(opts?: TmixOpts): VideoStream;
|
|
1365
|
+
tpad(opts?: TpadOpts): VideoStream;
|
|
1366
|
+
transpose(opts: TransposeOpts): VideoStream;
|
|
1367
|
+
trim(opts?: TrimOpts): VideoStream;
|
|
1368
|
+
unsharp(opts?: UnsharpOpts): VideoStream;
|
|
1369
|
+
upscale(opts: UpscaleOpts): VideoStream;
|
|
1370
|
+
v360(opts?: V360Opts): VideoStream;
|
|
1371
|
+
vectorscope(opts?: VectorscopeOpts): VideoStream;
|
|
1372
|
+
vflip(): VideoStream;
|
|
1373
|
+
vidstab(opts?: VidstabOpts): VideoStream;
|
|
1374
|
+
vidstabdetect(opts?: VidstabdetectOpts): VideoStream;
|
|
1375
|
+
vidstabtransform(opts?: VidstabtransformOpts): VideoStream;
|
|
1376
|
+
vignette(opts?: VignetteOpts): VideoStream;
|
|
1377
|
+
vstack(rest: VideoStream[], opts?: VstackOpts): VideoStream;
|
|
1378
|
+
waveform(opts?: WaveformOpts): VideoStream;
|
|
1379
|
+
xfade(b: VideoStream, opts?: XfadeOpts): VideoStream;
|
|
1380
|
+
xstack(rest: VideoStream[], opts?: XstackOpts): VideoStream;
|
|
1381
|
+
yadif(): VideoStream;
|
|
1382
|
+
zoompan(opts: ZoompanOpts): VideoStream;
|
|
1383
|
+
}
|
|
1384
|
+
export interface AudioStream {
|
|
1385
|
+
acompressor(opts?: AcompressorOpts): AudioStream;
|
|
1386
|
+
acontrast(opts?: AcontrastOpts): AudioStream;
|
|
1387
|
+
acrossfade(b: AudioStream, opts?: AcrossfadeOpts): AudioStream;
|
|
1388
|
+
adeclick(opts?: AdeclickOpts): AudioStream;
|
|
1389
|
+
adelay(opts: AdelayOpts): AudioStream;
|
|
1390
|
+
aecho(opts: AechoOpts): AudioStream;
|
|
1391
|
+
afade(opts: AfadeOpts): AudioStream;
|
|
1392
|
+
afftdn(opts?: AfftdnOpts): AudioStream;
|
|
1393
|
+
agate(opts?: AgateOpts): AudioStream;
|
|
1394
|
+
alimiter(opts?: AlimiterOpts): AudioStream;
|
|
1395
|
+
aloop(opts?: AloopOpts): AudioStream;
|
|
1396
|
+
amerge(opts?: AmergeOpts): AudioStream;
|
|
1397
|
+
amix(rest: AudioStream[], opts?: AmixOpts): AudioStream;
|
|
1398
|
+
anlmdn(opts?: AnlmdnOpts): AudioStream;
|
|
1399
|
+
apad(opts?: ApadOpts): AudioStream;
|
|
1400
|
+
aphaser(opts?: AphaserOpts): AudioStream;
|
|
1401
|
+
aresample(opts: AresampleOpts): AudioStream;
|
|
1402
|
+
areverse(): AudioStream;
|
|
1403
|
+
astats(opts?: AstatsOpts): AudioStream;
|
|
1404
|
+
asubboost(opts?: AsubboostOpts): AudioStream;
|
|
1405
|
+
atempo(opts: AtempoOpts): AudioStream;
|
|
1406
|
+
atrim(opts?: AtrimOpts): AudioStream;
|
|
1407
|
+
bandpass(opts: BandpassOpts): AudioStream;
|
|
1408
|
+
bass(opts: BassOpts): AudioStream;
|
|
1409
|
+
channelmap(opts?: ChannelmapOpts): AudioStream;
|
|
1410
|
+
chorus(opts?: ChorusOpts): AudioStream;
|
|
1411
|
+
classifyAudioEvent(opts?: ClassifyAudioEventOpts): AudioEventStream;
|
|
1412
|
+
compand(opts?: CompandOpts): AudioStream;
|
|
1413
|
+
crossfeed(opts?: CrossfeedOpts): AudioStream;
|
|
1414
|
+
deesser(opts?: DeesserOpts): AudioStream;
|
|
1415
|
+
dialoguenhance(opts?: DialoguenhanceOpts): AudioStream;
|
|
1416
|
+
dynaudnorm(opts?: DynaudnormOpts): AudioStream;
|
|
1417
|
+
ebur128(): AudioStream;
|
|
1418
|
+
equalizer(opts: EqualizerOpts): AudioStream;
|
|
1419
|
+
flanger(opts?: FlangerOpts): AudioStream;
|
|
1420
|
+
highpass(opts: HighpassOpts): AudioStream;
|
|
1421
|
+
loudnorm(opts?: LoudnormOpts): AudioStream;
|
|
1422
|
+
lowpass(opts: LowpassOpts): AudioStream;
|
|
1423
|
+
pan(opts: PanOpts): AudioStream;
|
|
1424
|
+
rubberband(opts?: RubberbandOpts): AudioStream;
|
|
1425
|
+
showcqt(opts?: ShowcqtOpts): VideoStream;
|
|
1426
|
+
showspectrum(opts?: ShowspectrumOpts): VideoStream;
|
|
1427
|
+
showwaves(opts?: ShowwavesOpts): VideoStream;
|
|
1428
|
+
sidechaincompress(b: AudioStream, opts?: SidechaincompressOpts): AudioStream;
|
|
1429
|
+
silencedetect(opts?: SilencedetectOpts): AudioStream;
|
|
1430
|
+
silenceremove(opts?: SilenceremoveOpts): AudioStream;
|
|
1431
|
+
speechnorm(opts?: SpeechnormOpts): AudioStream;
|
|
1432
|
+
stereowiden(opts?: StereowidenOpts): AudioStream;
|
|
1433
|
+
surround(opts?: SurroundOpts): AudioStream;
|
|
1434
|
+
transcribe(opts?: TranscribeOpts): TranscriptStream;
|
|
1435
|
+
treble(opts: TrebleOpts): AudioStream;
|
|
1436
|
+
tremolo(opts?: TremoloOpts): AudioStream;
|
|
1437
|
+
vibrato(opts?: VibratoOpts): AudioStream;
|
|
1438
|
+
volume(opts: VolumeOpts): AudioStream;
|
|
1439
|
+
}
|
|
1440
|
+
export interface AlphaStream {
|
|
1441
|
+
}
|
|
1442
|
+
export interface AVStream {
|
|
1443
|
+
}
|
|
1444
|
+
export interface DetectionStream {
|
|
1445
|
+
aggregateTracks(opts?: AggregateTracksOpts): DetectionStream;
|
|
1446
|
+
containsDetections(b: DetectionStream, opts?: ContainsDetectionsOpts): DetectionStream;
|
|
1447
|
+
count(opts?: CountOpts): DetectionStream;
|
|
1448
|
+
filterDetections(opts?: FilterDetectionsOpts): DetectionStream;
|
|
1449
|
+
intersectionDetections(b: DetectionStream, opts?: IntersectionDetectionsOpts): DetectionStream;
|
|
1450
|
+
track(opts: TrackOpts): DetectionStream;
|
|
1451
|
+
union(b: DetectionStream): DetectionStream;
|
|
1452
|
+
weightedDetections(b: DetectionStream, opts?: WeightedDetectionsOpts): DetectionStream;
|
|
1453
|
+
zone(opts?: ZoneOpts): DetectionStream;
|
|
1454
|
+
}
|
|
1455
|
+
export interface TranscriptStream {
|
|
1456
|
+
diarize(opts?: DiarizeOpts): TranscriptStream;
|
|
1457
|
+
}
|
|
1458
|
+
export interface DepthStream {
|
|
1459
|
+
}
|
|
1460
|
+
export interface SegmentationStream {
|
|
1461
|
+
filterSegmentation(opts?: FilterSegmentationOpts): SegmentationStream;
|
|
1462
|
+
intersectionSegmentations(b: SegmentationStream): SegmentationStream;
|
|
1463
|
+
unionSegmentations(b: SegmentationStream): SegmentationStream;
|
|
1464
|
+
}
|
|
1465
|
+
export interface PoseStream {
|
|
1466
|
+
computeAngles(opts?: ComputeAnglesOpts): PoseStream;
|
|
1467
|
+
filterPoses(opts?: FilterPosesOpts): PoseStream;
|
|
1468
|
+
}
|
|
1469
|
+
export interface TextStream {
|
|
1470
|
+
filterText(opts?: FilterTextOpts): TextStream;
|
|
1471
|
+
}
|
|
1472
|
+
export interface SceneStream {
|
|
1473
|
+
filterScenes(opts?: FilterScenesOpts): SceneStream;
|
|
1474
|
+
insertChapters(opts?: InsertChaptersOpts): SceneStream;
|
|
1475
|
+
}
|
|
1476
|
+
export interface DensityStream {
|
|
1477
|
+
}
|
|
1478
|
+
export interface AudioEventStream {
|
|
1479
|
+
filterAudioEvents(opts?: FilterAudioEventsOpts): AudioEventStream;
|
|
1480
|
+
}
|
|
1481
|
+
//# sourceMappingURL=streams.d.ts.map
|