typed-ffmpeg-compatible 2.2.0__py3-none-any.whl → 2.4.0__py3-none-any.whl
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.
- typed_ffmpeg/dag/global_runnable/global_args.py +0 -3
- typed_ffmpeg/dag/io/_input.py +1 -3
- typed_ffmpeg/dag/io/_output.py +1 -3
- typed_ffmpeg/dag/io/output_args.py +1 -3
- typed_ffmpeg/filters.py +75 -206
- typed_ffmpeg/streams/audio.py +228 -422
- typed_ffmpeg/streams/video.py +420 -829
- {typed_ffmpeg_compatible-2.2.0.dist-info → typed_ffmpeg_compatible-2.4.0.dist-info}/METADATA +1 -2
- {typed_ffmpeg_compatible-2.2.0.dist-info → typed_ffmpeg_compatible-2.4.0.dist-info}/RECORD +12 -12
- {typed_ffmpeg_compatible-2.2.0.dist-info → typed_ffmpeg_compatible-2.4.0.dist-info}/WHEEL +1 -1
- {typed_ffmpeg_compatible-2.2.0.dist-info → typed_ffmpeg_compatible-2.4.0.dist-info}/LICENSE +0 -0
- {typed_ffmpeg_compatible-2.2.0.dist-info → typed_ffmpeg_compatible-2.4.0.dist-info}/entry_points.txt +0 -0
typed_ffmpeg/streams/video.py
CHANGED
@@ -26,7 +26,6 @@ class VideoStream(FilterableStream):
|
|
26
26
|
qoffset: Rational = Default("-1/10"),
|
27
27
|
clear: Boolean = Default(False),
|
28
28
|
extra_options: dict[str, Any] = None,
|
29
|
-
**kwargs: Any,
|
30
29
|
) -> VideoStream:
|
31
30
|
"""
|
32
31
|
|
@@ -58,12 +57,14 @@ class VideoStream(FilterableStream):
|
|
58
57
|
"qoffset": qoffset,
|
59
58
|
"clear": clear,
|
60
59
|
}
|
61
|
-
| (extra_options or {})
|
62
|
-
| kwargs,
|
60
|
+
| (extra_options or {}),
|
63
61
|
)
|
64
62
|
return filter_node.video(0)
|
65
63
|
|
66
|
-
def alphaextract(
|
64
|
+
def alphaextract(
|
65
|
+
self,
|
66
|
+
extra_options: dict[str, Any] = None,
|
67
|
+
) -> VideoStream:
|
67
68
|
"""
|
68
69
|
|
69
70
|
Extract an alpha channel as a grayscale image component.
|
@@ -78,7 +79,7 @@ class VideoStream(FilterableStream):
|
|
78
79
|
filter_node = filter_node_factory(
|
79
80
|
FFMpegFilterDef(name="alphaextract", typings_input=("video",), typings_output=("video",)),
|
80
81
|
self,
|
81
|
-
**{} | (extra_options or {})
|
82
|
+
**{} | (extra_options or {}),
|
82
83
|
)
|
83
84
|
return filter_node.video(0)
|
84
85
|
|
@@ -92,7 +93,6 @@ class VideoStream(FilterableStream):
|
|
92
93
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
93
94
|
enable: String = Default(None),
|
94
95
|
extra_options: dict[str, Any] = None,
|
95
|
-
**kwargs: Any,
|
96
96
|
) -> VideoStream:
|
97
97
|
"""
|
98
98
|
|
@@ -123,8 +123,7 @@ class VideoStream(FilterableStream):
|
|
123
123
|
"ts_sync_mode": ts_sync_mode,
|
124
124
|
"enable": enable,
|
125
125
|
}
|
126
|
-
| (extra_options or {})
|
127
|
-
| kwargs,
|
126
|
+
| (extra_options or {}),
|
128
127
|
)
|
129
128
|
return filter_node.video(0)
|
130
129
|
|
@@ -140,7 +139,6 @@ class VideoStream(FilterableStream):
|
|
140
139
|
planes: Flags = Default("7"),
|
141
140
|
enable: String = Default(None),
|
142
141
|
extra_options: dict[str, Any] = None,
|
143
|
-
**kwargs: Any,
|
144
142
|
) -> VideoStream:
|
145
143
|
"""
|
146
144
|
|
@@ -176,8 +174,7 @@ class VideoStream(FilterableStream):
|
|
176
174
|
"planes": planes,
|
177
175
|
"enable": enable,
|
178
176
|
}
|
179
|
-
| (extra_options or {})
|
180
|
-
| kwargs,
|
177
|
+
| (extra_options or {}),
|
181
178
|
)
|
182
179
|
return filter_node.video(0)
|
183
180
|
|
@@ -190,7 +187,6 @@ class VideoStream(FilterableStream):
|
|
190
187
|
alpha: Boolean = Default(False),
|
191
188
|
shaping: Int | Literal["auto", "simple", "complex"] | Default = Default("auto"),
|
192
189
|
extra_options: dict[str, Any] = None,
|
193
|
-
**kwargs: Any,
|
194
190
|
) -> VideoStream:
|
195
191
|
"""
|
196
192
|
|
@@ -220,8 +216,7 @@ class VideoStream(FilterableStream):
|
|
220
216
|
"alpha": alpha,
|
221
217
|
"shaping": shaping,
|
222
218
|
}
|
223
|
-
| (extra_options or {})
|
224
|
-
| kwargs,
|
219
|
+
| (extra_options or {}),
|
225
220
|
)
|
226
221
|
return filter_node.video(0)
|
227
222
|
|
@@ -242,7 +237,6 @@ class VideoStream(FilterableStream):
|
|
242
237
|
_2s: Float = Default(32767.0),
|
243
238
|
enable: String = Default(None),
|
244
239
|
extra_options: dict[str, Any] = None,
|
245
|
-
**kwargs: Any,
|
246
240
|
) -> VideoStream:
|
247
241
|
"""
|
248
242
|
|
@@ -288,8 +282,7 @@ class VideoStream(FilterableStream):
|
|
288
282
|
"2s": _2s,
|
289
283
|
"enable": enable,
|
290
284
|
}
|
291
|
-
| (extra_options or {})
|
292
|
-
| kwargs,
|
285
|
+
| (extra_options or {}),
|
293
286
|
)
|
294
287
|
return filter_node.video(0)
|
295
288
|
|
@@ -301,7 +294,6 @@ class VideoStream(FilterableStream):
|
|
301
294
|
sizeY: Int = Default(0),
|
302
295
|
enable: String = Default(None),
|
303
296
|
extra_options: dict[str, Any] = None,
|
304
|
-
**kwargs: Any,
|
305
297
|
) -> VideoStream:
|
306
298
|
"""
|
307
299
|
|
@@ -329,8 +321,7 @@ class VideoStream(FilterableStream):
|
|
329
321
|
"sizeY": sizeY,
|
330
322
|
"enable": enable,
|
331
323
|
}
|
332
|
-
| (extra_options or {})
|
333
|
-
| kwargs,
|
324
|
+
| (extra_options or {}),
|
334
325
|
)
|
335
326
|
return filter_node.video(0)
|
336
327
|
|
@@ -342,7 +333,6 @@ class VideoStream(FilterableStream):
|
|
342
333
|
blend: Float = Default(0.0),
|
343
334
|
enable: String = Default(None),
|
344
335
|
extra_options: dict[str, Any] = None,
|
345
|
-
**kwargs: Any,
|
346
336
|
) -> VideoStream:
|
347
337
|
"""
|
348
338
|
|
@@ -370,8 +360,7 @@ class VideoStream(FilterableStream):
|
|
370
360
|
"blend": blend,
|
371
361
|
"enable": enable,
|
372
362
|
}
|
373
|
-
| (extra_options or {})
|
374
|
-
| kwargs,
|
363
|
+
| (extra_options or {}),
|
375
364
|
)
|
376
365
|
return filter_node.video(0)
|
377
366
|
|
@@ -381,7 +370,6 @@ class VideoStream(FilterableStream):
|
|
381
370
|
min_val: Int = Default(16),
|
382
371
|
enable: String = Default(None),
|
383
372
|
extra_options: dict[str, Any] = None,
|
384
|
-
**kwargs: Any,
|
385
373
|
) -> VideoStream:
|
386
374
|
"""
|
387
375
|
|
@@ -405,8 +393,7 @@ class VideoStream(FilterableStream):
|
|
405
393
|
"min_val": min_val,
|
406
394
|
"enable": enable,
|
407
395
|
}
|
408
|
-
| (extra_options or {})
|
409
|
-
| kwargs,
|
396
|
+
| (extra_options or {}),
|
410
397
|
)
|
411
398
|
return filter_node.video(0)
|
412
399
|
|
@@ -415,7 +402,6 @@ class VideoStream(FilterableStream):
|
|
415
402
|
*,
|
416
403
|
action: Int | Literal["start", "stop"] | Default = Default("start"),
|
417
404
|
extra_options: dict[str, Any] = None,
|
418
|
-
**kwargs: Any,
|
419
405
|
) -> VideoStream:
|
420
406
|
"""
|
421
407
|
|
@@ -437,8 +423,7 @@ class VideoStream(FilterableStream):
|
|
437
423
|
**{
|
438
424
|
"action": action,
|
439
425
|
}
|
440
|
-
| (extra_options or {})
|
441
|
-
| kwargs,
|
426
|
+
| (extra_options or {}),
|
442
427
|
)
|
443
428
|
return filter_node.video(0)
|
444
429
|
|
@@ -450,7 +435,6 @@ class VideoStream(FilterableStream):
|
|
450
435
|
planes: Int = Default(1),
|
451
436
|
enable: String = Default(None),
|
452
437
|
extra_options: dict[str, Any] = None,
|
453
|
-
**kwargs: Any,
|
454
438
|
) -> VideoStream:
|
455
439
|
"""
|
456
440
|
|
@@ -478,8 +462,7 @@ class VideoStream(FilterableStream):
|
|
478
462
|
"planes": planes,
|
479
463
|
"enable": enable,
|
480
464
|
}
|
481
|
-
| (extra_options or {})
|
482
|
-
| kwargs,
|
465
|
+
| (extra_options or {}),
|
483
466
|
)
|
484
467
|
return filter_node.video(0)
|
485
468
|
|
@@ -490,7 +473,6 @@ class VideoStream(FilterableStream):
|
|
490
473
|
filter: Boolean = Default(False),
|
491
474
|
enable: String = Default(None),
|
492
475
|
extra_options: dict[str, Any] = None,
|
493
|
-
**kwargs: Any,
|
494
476
|
) -> VideoStream:
|
495
477
|
"""
|
496
478
|
|
@@ -516,8 +498,7 @@ class VideoStream(FilterableStream):
|
|
516
498
|
"filter": filter,
|
517
499
|
"enable": enable,
|
518
500
|
}
|
519
|
-
| (extra_options or {})
|
520
|
-
| kwargs,
|
501
|
+
| (extra_options or {}),
|
521
502
|
)
|
522
503
|
return filter_node.video(0)
|
523
504
|
|
@@ -528,7 +509,6 @@ class VideoStream(FilterableStream):
|
|
528
509
|
picture_black_ratio_th: Double = Default(0.98),
|
529
510
|
pixel_black_th: Double = Default(0.1),
|
530
511
|
extra_options: dict[str, Any] = None,
|
531
|
-
**kwargs: Any,
|
532
512
|
) -> VideoStream:
|
533
513
|
"""
|
534
514
|
|
@@ -554,8 +534,7 @@ class VideoStream(FilterableStream):
|
|
554
534
|
"picture_black_ratio_th": picture_black_ratio_th,
|
555
535
|
"pixel_black_th": pixel_black_th,
|
556
536
|
}
|
557
|
-
| (extra_options or {})
|
558
|
-
| kwargs,
|
537
|
+
| (extra_options or {}),
|
559
538
|
)
|
560
539
|
return filter_node.video(0)
|
561
540
|
|
@@ -565,7 +544,6 @@ class VideoStream(FilterableStream):
|
|
565
544
|
amount: Int = Default(98),
|
566
545
|
threshold: Int = Default(32),
|
567
546
|
extra_options: dict[str, Any] = None,
|
568
|
-
**kwargs: Any,
|
569
547
|
) -> VideoStream:
|
570
548
|
"""
|
571
549
|
|
@@ -589,8 +567,7 @@ class VideoStream(FilterableStream):
|
|
589
567
|
"amount": amount,
|
590
568
|
"threshold": threshold,
|
591
569
|
}
|
592
|
-
| (extra_options or {})
|
593
|
-
| kwargs,
|
570
|
+
| (extra_options or {}),
|
594
571
|
)
|
595
572
|
return filter_node.video(0)
|
596
573
|
|
@@ -844,7 +821,6 @@ class VideoStream(FilterableStream):
|
|
844
821
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
845
822
|
enable: String = Default(None),
|
846
823
|
extra_options: dict[str, Any] = None,
|
847
|
-
**kwargs: Any,
|
848
824
|
) -> VideoStream:
|
849
825
|
"""
|
850
826
|
|
@@ -905,8 +881,7 @@ class VideoStream(FilterableStream):
|
|
905
881
|
"ts_sync_mode": ts_sync_mode,
|
906
882
|
"enable": enable,
|
907
883
|
}
|
908
|
-
| (extra_options or {})
|
909
|
-
| kwargs,
|
884
|
+
| (extra_options or {}),
|
910
885
|
)
|
911
886
|
return filter_node.video(0)
|
912
887
|
|
@@ -917,7 +892,6 @@ class VideoStream(FilterableStream):
|
|
917
892
|
period_max: Int = Default(24),
|
918
893
|
planes: Int = Default(1),
|
919
894
|
extra_options: dict[str, Any] = None,
|
920
|
-
**kwargs: Any,
|
921
895
|
) -> VideoStream:
|
922
896
|
"""
|
923
897
|
|
@@ -943,8 +917,7 @@ class VideoStream(FilterableStream):
|
|
943
917
|
"period_max": period_max,
|
944
918
|
"planes": planes,
|
945
919
|
}
|
946
|
-
| (extra_options or {})
|
947
|
-
| kwargs,
|
920
|
+
| (extra_options or {}),
|
948
921
|
)
|
949
922
|
return filter_node.video(0)
|
950
923
|
|
@@ -958,7 +931,6 @@ class VideoStream(FilterableStream):
|
|
958
931
|
block_width: Int = Default(-1),
|
959
932
|
planes: Int = Default(1),
|
960
933
|
extra_options: dict[str, Any] = None,
|
961
|
-
**kwargs: Any,
|
962
934
|
) -> VideoStream:
|
963
935
|
"""
|
964
936
|
|
@@ -990,8 +962,7 @@ class VideoStream(FilterableStream):
|
|
990
962
|
"block_width": block_width,
|
991
963
|
"planes": planes,
|
992
964
|
}
|
993
|
-
| (extra_options or {})
|
994
|
-
| kwargs,
|
965
|
+
| (extra_options or {}),
|
995
966
|
)
|
996
967
|
return filter_node.video(0)
|
997
968
|
|
@@ -1006,7 +977,6 @@ class VideoStream(FilterableStream):
|
|
1006
977
|
alpha_power: Int = Default(-1),
|
1007
978
|
enable: String = Default(None),
|
1008
979
|
extra_options: dict[str, Any] = None,
|
1009
|
-
**kwargs: Any,
|
1010
980
|
) -> VideoStream:
|
1011
981
|
"""
|
1012
982
|
|
@@ -1040,8 +1010,7 @@ class VideoStream(FilterableStream):
|
|
1040
1010
|
"alpha_power": alpha_power,
|
1041
1011
|
"enable": enable,
|
1042
1012
|
}
|
1043
|
-
| (extra_options or {})
|
1044
|
-
| kwargs,
|
1013
|
+
| (extra_options or {}),
|
1045
1014
|
)
|
1046
1015
|
return filter_node.video(0)
|
1047
1016
|
|
@@ -1053,7 +1022,6 @@ class VideoStream(FilterableStream):
|
|
1053
1022
|
deint: Int | Literal["all", "interlaced"] | Default = Default("all"),
|
1054
1023
|
enable: String = Default(None),
|
1055
1024
|
extra_options: dict[str, Any] = None,
|
1056
|
-
**kwargs: Any,
|
1057
1025
|
) -> VideoStream:
|
1058
1026
|
"""
|
1059
1027
|
|
@@ -1081,8 +1049,7 @@ class VideoStream(FilterableStream):
|
|
1081
1049
|
"deint": deint,
|
1082
1050
|
"enable": enable,
|
1083
1051
|
}
|
1084
|
-
| (extra_options or {})
|
1085
|
-
| kwargs,
|
1052
|
+
| (extra_options or {}),
|
1086
1053
|
)
|
1087
1054
|
return filter_node.video(0)
|
1088
1055
|
|
@@ -1093,7 +1060,6 @@ class VideoStream(FilterableStream):
|
|
1093
1060
|
planes: Flags = Default("7"),
|
1094
1061
|
enable: String = Default(None),
|
1095
1062
|
extra_options: dict[str, Any] = None,
|
1096
|
-
**kwargs: Any,
|
1097
1063
|
) -> VideoStream:
|
1098
1064
|
"""
|
1099
1065
|
|
@@ -1119,12 +1085,14 @@ class VideoStream(FilterableStream):
|
|
1119
1085
|
"planes": planes,
|
1120
1086
|
"enable": enable,
|
1121
1087
|
}
|
1122
|
-
| (extra_options or {})
|
1123
|
-
| kwargs,
|
1088
|
+
| (extra_options or {}),
|
1124
1089
|
)
|
1125
1090
|
return filter_node.video(0)
|
1126
1091
|
|
1127
|
-
def ccrepack(
|
1092
|
+
def ccrepack(
|
1093
|
+
self,
|
1094
|
+
extra_options: dict[str, Any] = None,
|
1095
|
+
) -> VideoStream:
|
1128
1096
|
"""
|
1129
1097
|
|
1130
1098
|
Repack CEA-708 closed caption metadata
|
@@ -1139,7 +1107,7 @@ class VideoStream(FilterableStream):
|
|
1139
1107
|
filter_node = filter_node_factory(
|
1140
1108
|
FFMpegFilterDef(name="ccrepack", typings_input=("video",), typings_output=("video",)),
|
1141
1109
|
self,
|
1142
|
-
**{} | (extra_options or {})
|
1110
|
+
**{} | (extra_options or {}),
|
1143
1111
|
)
|
1144
1112
|
return filter_node.video(0)
|
1145
1113
|
|
@@ -1152,7 +1120,6 @@ class VideoStream(FilterableStream):
|
|
1152
1120
|
yuv: Boolean = Default(False),
|
1153
1121
|
enable: String = Default(None),
|
1154
1122
|
extra_options: dict[str, Any] = None,
|
1155
|
-
**kwargs: Any,
|
1156
1123
|
) -> VideoStream:
|
1157
1124
|
"""
|
1158
1125
|
|
@@ -1182,8 +1149,7 @@ class VideoStream(FilterableStream):
|
|
1182
1149
|
"yuv": yuv,
|
1183
1150
|
"enable": enable,
|
1184
1151
|
}
|
1185
|
-
| (extra_options or {})
|
1186
|
-
| kwargs,
|
1152
|
+
| (extra_options or {}),
|
1187
1153
|
)
|
1188
1154
|
return filter_node.video(0)
|
1189
1155
|
|
@@ -1196,7 +1162,6 @@ class VideoStream(FilterableStream):
|
|
1196
1162
|
yuv: Boolean = Default(False),
|
1197
1163
|
enable: String = Default(None),
|
1198
1164
|
extra_options: dict[str, Any] = None,
|
1199
|
-
**kwargs: Any,
|
1200
1165
|
) -> VideoStream:
|
1201
1166
|
"""
|
1202
1167
|
|
@@ -1226,8 +1191,7 @@ class VideoStream(FilterableStream):
|
|
1226
1191
|
"yuv": yuv,
|
1227
1192
|
"enable": enable,
|
1228
1193
|
}
|
1229
|
-
| (extra_options or {})
|
1230
|
-
| kwargs,
|
1194
|
+
| (extra_options or {}),
|
1231
1195
|
)
|
1232
1196
|
return filter_node.video(0)
|
1233
1197
|
|
@@ -1245,7 +1209,6 @@ class VideoStream(FilterableStream):
|
|
1245
1209
|
distance: Int | Literal["manhattan", "euclidean"] | Default = Default("manhattan"),
|
1246
1210
|
enable: String = Default(None),
|
1247
1211
|
extra_options: dict[str, Any] = None,
|
1248
|
-
**kwargs: Any,
|
1249
1212
|
) -> VideoStream:
|
1250
1213
|
"""
|
1251
1214
|
|
@@ -1285,8 +1248,7 @@ class VideoStream(FilterableStream):
|
|
1285
1248
|
"distance": distance,
|
1286
1249
|
"enable": enable,
|
1287
1250
|
}
|
1288
|
-
| (extra_options or {})
|
1289
|
-
| kwargs,
|
1251
|
+
| (extra_options or {}),
|
1290
1252
|
)
|
1291
1253
|
return filter_node.video(0)
|
1292
1254
|
|
@@ -1300,7 +1262,6 @@ class VideoStream(FilterableStream):
|
|
1300
1262
|
edge: Int | Literal["smear", "wrap"] | Default = Default("smear"),
|
1301
1263
|
enable: String = Default(None),
|
1302
1264
|
extra_options: dict[str, Any] = None,
|
1303
|
-
**kwargs: Any,
|
1304
1265
|
) -> VideoStream:
|
1305
1266
|
"""
|
1306
1267
|
|
@@ -1332,8 +1293,7 @@ class VideoStream(FilterableStream):
|
|
1332
1293
|
"edge": edge,
|
1333
1294
|
"enable": enable,
|
1334
1295
|
}
|
1335
|
-
| (extra_options or {})
|
1336
|
-
| kwargs,
|
1296
|
+
| (extra_options or {}),
|
1337
1297
|
)
|
1338
1298
|
return filter_node.video(0)
|
1339
1299
|
|
@@ -1385,7 +1345,6 @@ class VideoStream(FilterableStream):
|
|
1385
1345
|
gamma: Double = Default(2.6),
|
1386
1346
|
fill: Boolean = Default(True),
|
1387
1347
|
extra_options: dict[str, Any] = None,
|
1388
|
-
**kwargs: Any,
|
1389
1348
|
) -> VideoStream:
|
1390
1349
|
"""
|
1391
1350
|
|
@@ -1425,8 +1384,7 @@ class VideoStream(FilterableStream):
|
|
1425
1384
|
"gamma": gamma,
|
1426
1385
|
"fill": fill,
|
1427
1386
|
}
|
1428
|
-
| (extra_options or {})
|
1429
|
-
| kwargs,
|
1387
|
+
| (extra_options or {}),
|
1430
1388
|
)
|
1431
1389
|
return filter_node.video(0)
|
1432
1390
|
|
@@ -1440,7 +1398,6 @@ class VideoStream(FilterableStream):
|
|
1440
1398
|
block: Boolean = Default(False),
|
1441
1399
|
enable: String = Default(None),
|
1442
1400
|
extra_options: dict[str, Any] = None,
|
1443
|
-
**kwargs: Any,
|
1444
1401
|
) -> VideoStream:
|
1445
1402
|
"""
|
1446
1403
|
|
@@ -1472,8 +1429,7 @@ class VideoStream(FilterableStream):
|
|
1472
1429
|
"block": block,
|
1473
1430
|
"enable": enable,
|
1474
1431
|
}
|
1475
|
-
| (extra_options or {})
|
1476
|
-
| kwargs,
|
1432
|
+
| (extra_options or {}),
|
1477
1433
|
)
|
1478
1434
|
return filter_node.video(0)
|
1479
1435
|
|
@@ -1492,7 +1448,6 @@ class VideoStream(FilterableStream):
|
|
1492
1448
|
pl: Boolean = Default(False),
|
1493
1449
|
enable: String = Default(None),
|
1494
1450
|
extra_options: dict[str, Any] = None,
|
1495
|
-
**kwargs: Any,
|
1496
1451
|
) -> VideoStream:
|
1497
1452
|
"""
|
1498
1453
|
|
@@ -1534,8 +1489,7 @@ class VideoStream(FilterableStream):
|
|
1534
1489
|
"pl": pl,
|
1535
1490
|
"enable": enable,
|
1536
1491
|
}
|
1537
|
-
| (extra_options or {})
|
1538
|
-
| kwargs,
|
1492
|
+
| (extra_options or {}),
|
1539
1493
|
)
|
1540
1494
|
return filter_node.video(0)
|
1541
1495
|
|
@@ -1562,7 +1516,6 @@ class VideoStream(FilterableStream):
|
|
1562
1516
|
pa: Double = Default(0.0),
|
1563
1517
|
enable: String = Default(None),
|
1564
1518
|
extra_options: dict[str, Any] = None,
|
1565
|
-
**kwargs: Any,
|
1566
1519
|
) -> VideoStream:
|
1567
1520
|
"""
|
1568
1521
|
|
@@ -1620,8 +1573,7 @@ class VideoStream(FilterableStream):
|
|
1620
1573
|
"pa": pa,
|
1621
1574
|
"enable": enable,
|
1622
1575
|
}
|
1623
|
-
| (extra_options or {})
|
1624
|
-
| kwargs,
|
1576
|
+
| (extra_options or {}),
|
1625
1577
|
)
|
1626
1578
|
return filter_node.video(0)
|
1627
1579
|
|
@@ -1637,7 +1589,6 @@ class VideoStream(FilterableStream):
|
|
1637
1589
|
pl: Float = Default(0.0),
|
1638
1590
|
enable: String = Default(None),
|
1639
1591
|
extra_options: dict[str, Any] = None,
|
1640
|
-
**kwargs: Any,
|
1641
1592
|
) -> VideoStream:
|
1642
1593
|
"""
|
1643
1594
|
|
@@ -1673,8 +1624,7 @@ class VideoStream(FilterableStream):
|
|
1673
1624
|
"pl": pl,
|
1674
1625
|
"enable": enable,
|
1675
1626
|
}
|
1676
|
-
| (extra_options or {})
|
1677
|
-
| kwargs,
|
1627
|
+
| (extra_options or {}),
|
1678
1628
|
)
|
1679
1629
|
return filter_node.video(0)
|
1680
1630
|
|
@@ -1689,7 +1639,6 @@ class VideoStream(FilterableStream):
|
|
1689
1639
|
analyze: Int | Literal["manual", "average", "minmax", "median"] | Default = Default("manual"),
|
1690
1640
|
enable: String = Default(None),
|
1691
1641
|
extra_options: dict[str, Any] = None,
|
1692
|
-
**kwargs: Any,
|
1693
1642
|
) -> VideoStream:
|
1694
1643
|
"""
|
1695
1644
|
|
@@ -1723,8 +1672,7 @@ class VideoStream(FilterableStream):
|
|
1723
1672
|
"analyze": analyze,
|
1724
1673
|
"enable": enable,
|
1725
1674
|
}
|
1726
|
-
| (extra_options or {})
|
1727
|
-
| kwargs,
|
1675
|
+
| (extra_options or {}),
|
1728
1676
|
)
|
1729
1677
|
return filter_node.video(0)
|
1730
1678
|
|
@@ -1736,7 +1684,6 @@ class VideoStream(FilterableStream):
|
|
1736
1684
|
blend: Float = Default(0.0),
|
1737
1685
|
enable: String = Default(None),
|
1738
1686
|
extra_options: dict[str, Any] = None,
|
1739
|
-
**kwargs: Any,
|
1740
1687
|
) -> VideoStream:
|
1741
1688
|
"""
|
1742
1689
|
|
@@ -1764,8 +1711,7 @@ class VideoStream(FilterableStream):
|
|
1764
1711
|
"blend": blend,
|
1765
1712
|
"enable": enable,
|
1766
1713
|
}
|
1767
|
-
| (extra_options or {})
|
1768
|
-
| kwargs,
|
1714
|
+
| (extra_options or {}),
|
1769
1715
|
)
|
1770
1716
|
return filter_node.video(0)
|
1771
1717
|
|
@@ -1778,7 +1724,6 @@ class VideoStream(FilterableStream):
|
|
1778
1724
|
mix: Float = Default(1.0),
|
1779
1725
|
enable: String = Default(None),
|
1780
1726
|
extra_options: dict[str, Any] = None,
|
1781
|
-
**kwargs: Any,
|
1782
1727
|
) -> VideoStream:
|
1783
1728
|
"""
|
1784
1729
|
|
@@ -1808,8 +1753,7 @@ class VideoStream(FilterableStream):
|
|
1808
1753
|
"mix": mix,
|
1809
1754
|
"enable": enable,
|
1810
1755
|
}
|
1811
|
-
| (extra_options or {})
|
1812
|
-
| kwargs,
|
1756
|
+
| (extra_options or {}),
|
1813
1757
|
)
|
1814
1758
|
return filter_node.video(0)
|
1815
1759
|
|
@@ -1821,7 +1765,6 @@ class VideoStream(FilterableStream):
|
|
1821
1765
|
blend: Float = Default(0.0),
|
1822
1766
|
enable: String = Default(None),
|
1823
1767
|
extra_options: dict[str, Any] = None,
|
1824
|
-
**kwargs: Any,
|
1825
1768
|
) -> VideoStream:
|
1826
1769
|
"""
|
1827
1770
|
|
@@ -1849,8 +1792,7 @@ class VideoStream(FilterableStream):
|
|
1849
1792
|
"blend": blend,
|
1850
1793
|
"enable": enable,
|
1851
1794
|
}
|
1852
|
-
| (extra_options or {})
|
1853
|
-
| kwargs,
|
1795
|
+
| (extra_options or {}),
|
1854
1796
|
)
|
1855
1797
|
return filter_node.video(0)
|
1856
1798
|
|
@@ -1876,7 +1818,6 @@ class VideoStream(FilterableStream):
|
|
1876
1818
|
preserve: Int | Literal["none", "lum", "max", "avg", "sum", "nrm", "pwr"] | Default = Default("none"),
|
1877
1819
|
enable: String = Default(None),
|
1878
1820
|
extra_options: dict[str, Any] = None,
|
1879
|
-
**kwargs: Any,
|
1880
1821
|
) -> VideoStream:
|
1881
1822
|
"""
|
1882
1823
|
|
@@ -1932,8 +1873,7 @@ class VideoStream(FilterableStream):
|
|
1932
1873
|
"preserve": preserve,
|
1933
1874
|
"enable": enable,
|
1934
1875
|
}
|
1935
|
-
| (extra_options or {})
|
1936
|
-
| kwargs,
|
1876
|
+
| (extra_options or {}),
|
1937
1877
|
)
|
1938
1878
|
return filter_node.video(0)
|
1939
1879
|
|
@@ -1948,7 +1888,6 @@ class VideoStream(FilterableStream):
|
|
1948
1888
|
kernel: Int | Literal["euclidean", "weuclidean"] | Default = Default("euclidean"),
|
1949
1889
|
enable: String = Default(None),
|
1950
1890
|
extra_options: dict[str, Any] = None,
|
1951
|
-
**kwargs: Any,
|
1952
1891
|
) -> VideoStream:
|
1953
1892
|
"""
|
1954
1893
|
|
@@ -1980,8 +1919,7 @@ class VideoStream(FilterableStream):
|
|
1980
1919
|
"kernel": kernel,
|
1981
1920
|
"enable": enable,
|
1982
1921
|
}
|
1983
|
-
| (extra_options or {})
|
1984
|
-
| kwargs,
|
1922
|
+
| (extra_options or {}),
|
1985
1923
|
)
|
1986
1924
|
return filter_node.video(0)
|
1987
1925
|
|
@@ -1996,7 +1934,6 @@ class VideoStream(FilterableStream):
|
|
1996
1934
|
| Default = Default(-1),
|
1997
1935
|
enable: String = Default(None),
|
1998
1936
|
extra_options: dict[str, Any] = None,
|
1999
|
-
**kwargs: Any,
|
2000
1937
|
) -> VideoStream:
|
2001
1938
|
"""
|
2002
1939
|
|
@@ -2022,8 +1959,7 @@ class VideoStream(FilterableStream):
|
|
2022
1959
|
"dst": dst,
|
2023
1960
|
"enable": enable,
|
2024
1961
|
}
|
2025
|
-
| (extra_options or {})
|
2026
|
-
| kwargs,
|
1962
|
+
| (extra_options or {}),
|
2027
1963
|
)
|
2028
1964
|
return filter_node.video(0)
|
2029
1965
|
|
@@ -2130,7 +2066,6 @@ class VideoStream(FilterableStream):
|
|
2130
2066
|
| Default = Default(2),
|
2131
2067
|
enable: String = Default(None),
|
2132
2068
|
extra_options: dict[str, Any] = None,
|
2133
|
-
**kwargs: Any,
|
2134
2069
|
) -> VideoStream:
|
2135
2070
|
"""
|
2136
2071
|
|
@@ -2180,8 +2115,7 @@ class VideoStream(FilterableStream):
|
|
2180
2115
|
"itrc": itrc,
|
2181
2116
|
"enable": enable,
|
2182
2117
|
}
|
2183
|
-
| (extra_options or {})
|
2184
|
-
| kwargs,
|
2118
|
+
| (extra_options or {}),
|
2185
2119
|
)
|
2186
2120
|
return filter_node.video(0)
|
2187
2121
|
|
@@ -2193,7 +2127,6 @@ class VideoStream(FilterableStream):
|
|
2193
2127
|
pl: Float = Default(0.0),
|
2194
2128
|
enable: String = Default(None),
|
2195
2129
|
extra_options: dict[str, Any] = None,
|
2196
|
-
**kwargs: Any,
|
2197
2130
|
) -> VideoStream:
|
2198
2131
|
"""
|
2199
2132
|
|
@@ -2221,8 +2154,7 @@ class VideoStream(FilterableStream):
|
|
2221
2154
|
"pl": pl,
|
2222
2155
|
"enable": enable,
|
2223
2156
|
}
|
2224
|
-
| (extra_options or {})
|
2225
|
-
| kwargs,
|
2157
|
+
| (extra_options or {}),
|
2226
2158
|
)
|
2227
2159
|
return filter_node.video(0)
|
2228
2160
|
|
@@ -2247,7 +2179,6 @@ class VideoStream(FilterableStream):
|
|
2247
2179
|
_3mode: Int | Literal["square", "row", "column"] | Default = Default("square"),
|
2248
2180
|
enable: String = Default(None),
|
2249
2181
|
extra_options: dict[str, Any] = None,
|
2250
|
-
**kwargs: Any,
|
2251
2182
|
) -> VideoStream:
|
2252
2183
|
"""
|
2253
2184
|
|
@@ -2301,8 +2232,7 @@ class VideoStream(FilterableStream):
|
|
2301
2232
|
"3mode": _3mode,
|
2302
2233
|
"enable": enable,
|
2303
2234
|
}
|
2304
|
-
| (extra_options or {})
|
2305
|
-
| kwargs,
|
2235
|
+
| (extra_options or {}),
|
2306
2236
|
)
|
2307
2237
|
return filter_node.video(0)
|
2308
2238
|
|
@@ -2319,7 +2249,6 @@ class VideoStream(FilterableStream):
|
|
2319
2249
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
2320
2250
|
enable: String = Default(None),
|
2321
2251
|
extra_options: dict[str, Any] = None,
|
2322
|
-
**kwargs: Any,
|
2323
2252
|
) -> VideoStream:
|
2324
2253
|
"""
|
2325
2254
|
|
@@ -2356,12 +2285,14 @@ class VideoStream(FilterableStream):
|
|
2356
2285
|
"ts_sync_mode": ts_sync_mode,
|
2357
2286
|
"enable": enable,
|
2358
2287
|
}
|
2359
|
-
| (extra_options or {})
|
2360
|
-
| kwargs,
|
2288
|
+
| (extra_options or {}),
|
2361
2289
|
)
|
2362
2290
|
return filter_node.video(0)
|
2363
2291
|
|
2364
|
-
def copy(
|
2292
|
+
def copy(
|
2293
|
+
self,
|
2294
|
+
extra_options: dict[str, Any] = None,
|
2295
|
+
) -> VideoStream:
|
2365
2296
|
"""
|
2366
2297
|
|
2367
2298
|
Copy the input video unchanged to the output.
|
@@ -2376,7 +2307,7 @@ class VideoStream(FilterableStream):
|
|
2376
2307
|
filter_node = filter_node_factory(
|
2377
2308
|
FFMpegFilterDef(name="copy", typings_input=("video",), typings_output=("video",)),
|
2378
2309
|
self,
|
2379
|
-
**{} | (extra_options or {})
|
2310
|
+
**{} | (extra_options or {}),
|
2380
2311
|
)
|
2381
2312
|
return filter_node.video(0)
|
2382
2313
|
|
@@ -2388,7 +2319,6 @@ class VideoStream(FilterableStream):
|
|
2388
2319
|
filter: String = Default(None),
|
2389
2320
|
output_rect: String = Default(None),
|
2390
2321
|
extra_options: dict[str, Any] = None,
|
2391
|
-
**kwargs: Any,
|
2392
2322
|
) -> VideoStream:
|
2393
2323
|
"""
|
2394
2324
|
|
@@ -2416,8 +2346,7 @@ class VideoStream(FilterableStream):
|
|
2416
2346
|
"filter": filter,
|
2417
2347
|
"output_rect": output_rect,
|
2418
2348
|
}
|
2419
|
-
| (extra_options or {})
|
2420
|
-
| kwargs,
|
2349
|
+
| (extra_options or {}),
|
2421
2350
|
)
|
2422
2351
|
return filter_node.video(0)
|
2423
2352
|
|
@@ -2431,7 +2360,6 @@ class VideoStream(FilterableStream):
|
|
2431
2360
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
2432
2361
|
enable: String = Default(None),
|
2433
2362
|
extra_options: dict[str, Any] = None,
|
2434
|
-
**kwargs: Any,
|
2435
2363
|
) -> VideoStream:
|
2436
2364
|
"""
|
2437
2365
|
|
@@ -2462,8 +2390,7 @@ class VideoStream(FilterableStream):
|
|
2462
2390
|
"ts_sync_mode": ts_sync_mode,
|
2463
2391
|
"enable": enable,
|
2464
2392
|
}
|
2465
|
-
| (extra_options or {})
|
2466
|
-
| kwargs,
|
2393
|
+
| (extra_options or {}),
|
2467
2394
|
)
|
2468
2395
|
return filter_node.video(0)
|
2469
2396
|
|
@@ -2473,7 +2400,6 @@ class VideoStream(FilterableStream):
|
|
2473
2400
|
cover: String = Default(None),
|
2474
2401
|
mode: Int | Literal["cover", "blur"] | Default = Default("blur"),
|
2475
2402
|
extra_options: dict[str, Any] = None,
|
2476
|
-
**kwargs: Any,
|
2477
2403
|
) -> VideoStream:
|
2478
2404
|
"""
|
2479
2405
|
|
@@ -2497,8 +2423,7 @@ class VideoStream(FilterableStream):
|
|
2497
2423
|
"cover": cover,
|
2498
2424
|
"mode": mode,
|
2499
2425
|
}
|
2500
|
-
| (extra_options or {})
|
2501
|
-
| kwargs,
|
2426
|
+
| (extra_options or {}),
|
2502
2427
|
)
|
2503
2428
|
return filter_node.video(0)
|
2504
2429
|
|
@@ -2512,7 +2437,6 @@ class VideoStream(FilterableStream):
|
|
2512
2437
|
keep_aspect: Boolean = Default(False),
|
2513
2438
|
exact: Boolean = Default(False),
|
2514
2439
|
extra_options: dict[str, Any] = None,
|
2515
|
-
**kwargs: Any,
|
2516
2440
|
) -> VideoStream:
|
2517
2441
|
"""
|
2518
2442
|
|
@@ -2544,8 +2468,7 @@ class VideoStream(FilterableStream):
|
|
2544
2468
|
"keep_aspect": keep_aspect,
|
2545
2469
|
"exact": exact,
|
2546
2470
|
}
|
2547
|
-
| (extra_options or {})
|
2548
|
-
| kwargs,
|
2471
|
+
| (extra_options or {}),
|
2549
2472
|
)
|
2550
2473
|
return filter_node.video(0)
|
2551
2474
|
|
@@ -2564,7 +2487,6 @@ class VideoStream(FilterableStream):
|
|
2564
2487
|
mv_threshold: Int = Default(8),
|
2565
2488
|
enable: String = Default(None),
|
2566
2489
|
extra_options: dict[str, Any] = None,
|
2567
|
-
**kwargs: Any,
|
2568
2490
|
) -> VideoStream:
|
2569
2491
|
"""
|
2570
2492
|
|
@@ -2606,8 +2528,7 @@ class VideoStream(FilterableStream):
|
|
2606
2528
|
"mv_threshold": mv_threshold,
|
2607
2529
|
"enable": enable,
|
2608
2530
|
}
|
2609
|
-
| (extra_options or {})
|
2610
|
-
| kwargs,
|
2531
|
+
| (extra_options or {}),
|
2611
2532
|
)
|
2612
2533
|
return filter_node.video(0)
|
2613
2534
|
|
@@ -2618,7 +2539,6 @@ class VideoStream(FilterableStream):
|
|
2618
2539
|
preroll: Duration = Default(0.0),
|
2619
2540
|
buffer: Duration = Default(0.0),
|
2620
2541
|
extra_options: dict[str, Any] = None,
|
2621
|
-
**kwargs: Any,
|
2622
2542
|
) -> VideoStream:
|
2623
2543
|
"""
|
2624
2544
|
|
@@ -2644,8 +2564,7 @@ class VideoStream(FilterableStream):
|
|
2644
2564
|
"preroll": preroll,
|
2645
2565
|
"buffer": buffer,
|
2646
2566
|
}
|
2647
|
-
| (extra_options or {})
|
2648
|
-
| kwargs,
|
2567
|
+
| (extra_options or {}),
|
2649
2568
|
)
|
2650
2569
|
return filter_node.video(0)
|
2651
2570
|
|
@@ -2677,7 +2596,6 @@ class VideoStream(FilterableStream):
|
|
2677
2596
|
interp: Int | Literal["natural", "pchip"] | Default = Default("natural"),
|
2678
2597
|
enable: String = Default(None),
|
2679
2598
|
extra_options: dict[str, Any] = None,
|
2680
|
-
**kwargs: Any,
|
2681
2599
|
) -> VideoStream:
|
2682
2600
|
"""
|
2683
2601
|
|
@@ -2717,8 +2635,7 @@ class VideoStream(FilterableStream):
|
|
2717
2635
|
"interp": interp,
|
2718
2636
|
"enable": enable,
|
2719
2637
|
}
|
2720
|
-
| (extra_options or {})
|
2721
|
-
| kwargs,
|
2638
|
+
| (extra_options or {}),
|
2722
2639
|
)
|
2723
2640
|
return filter_node.video(0)
|
2724
2641
|
|
@@ -2734,7 +2651,6 @@ class VideoStream(FilterableStream):
|
|
2734
2651
|
format: Int | Literal["hex", "dec"] | Default = Default("hex"),
|
2735
2652
|
components: Int = Default(15),
|
2736
2653
|
extra_options: dict[str, Any] = None,
|
2737
|
-
**kwargs: Any,
|
2738
2654
|
) -> VideoStream:
|
2739
2655
|
"""
|
2740
2656
|
|
@@ -2770,8 +2686,7 @@ class VideoStream(FilterableStream):
|
|
2770
2686
|
"format": format,
|
2771
2687
|
"components": components,
|
2772
2688
|
}
|
2773
|
-
| (extra_options or {})
|
2774
|
-
| kwargs,
|
2689
|
+
| (extra_options or {}),
|
2775
2690
|
)
|
2776
2691
|
return filter_node.video(0)
|
2777
2692
|
|
@@ -2783,7 +2698,6 @@ class VideoStream(FilterableStream):
|
|
2783
2698
|
planes: Int = Default(15),
|
2784
2699
|
enable: String = Default(None),
|
2785
2700
|
extra_options: dict[str, Any] = None,
|
2786
|
-
**kwargs: Any,
|
2787
2701
|
) -> VideoStream:
|
2788
2702
|
"""
|
2789
2703
|
|
@@ -2811,8 +2725,7 @@ class VideoStream(FilterableStream):
|
|
2811
2725
|
"planes": planes,
|
2812
2726
|
"enable": enable,
|
2813
2727
|
}
|
2814
|
-
| (extra_options or {})
|
2815
|
-
| kwargs,
|
2728
|
+
| (extra_options or {}),
|
2816
2729
|
)
|
2817
2730
|
return filter_node.video(0)
|
2818
2731
|
|
@@ -2825,7 +2738,6 @@ class VideoStream(FilterableStream):
|
|
2825
2738
|
n: Int = Default(3),
|
2826
2739
|
enable: String = Default(None),
|
2827
2740
|
extra_options: dict[str, Any] = None,
|
2828
|
-
**kwargs: Any,
|
2829
2741
|
) -> VideoStream:
|
2830
2742
|
"""
|
2831
2743
|
|
@@ -2855,8 +2767,7 @@ class VideoStream(FilterableStream):
|
|
2855
2767
|
"n": n,
|
2856
2768
|
"enable": enable,
|
2857
2769
|
}
|
2858
|
-
| (extra_options or {})
|
2859
|
-
| kwargs,
|
2770
|
+
| (extra_options or {}),
|
2860
2771
|
)
|
2861
2772
|
return filter_node.video(0)
|
2862
2773
|
|
@@ -2873,7 +2784,6 @@ class VideoStream(FilterableStream):
|
|
2873
2784
|
coupling: Boolean = Default(False),
|
2874
2785
|
enable: String = Default(None),
|
2875
2786
|
extra_options: dict[str, Any] = None,
|
2876
|
-
**kwargs: Any,
|
2877
2787
|
) -> VideoStream:
|
2878
2788
|
"""
|
2879
2789
|
|
@@ -2911,8 +2821,7 @@ class VideoStream(FilterableStream):
|
|
2911
2821
|
"coupling": coupling,
|
2912
2822
|
"enable": enable,
|
2913
2823
|
}
|
2914
|
-
| (extra_options or {})
|
2915
|
-
| kwargs,
|
2824
|
+
| (extra_options or {}),
|
2916
2825
|
)
|
2917
2826
|
return filter_node.video(0)
|
2918
2827
|
|
@@ -2928,7 +2837,6 @@ class VideoStream(FilterableStream):
|
|
2928
2837
|
planes: Int = Default(15),
|
2929
2838
|
enable: String = Default(None),
|
2930
2839
|
extra_options: dict[str, Any] = None,
|
2931
|
-
**kwargs: Any,
|
2932
2840
|
) -> VideoStream:
|
2933
2841
|
"""
|
2934
2842
|
|
@@ -2964,8 +2872,7 @@ class VideoStream(FilterableStream):
|
|
2964
2872
|
"planes": planes,
|
2965
2873
|
"enable": enable,
|
2966
2874
|
}
|
2967
|
-
| (extra_options or {})
|
2968
|
-
| kwargs,
|
2875
|
+
| (extra_options or {}),
|
2969
2876
|
)
|
2970
2877
|
return filter_node.video(0)
|
2971
2878
|
|
@@ -2982,7 +2889,6 @@ class VideoStream(FilterableStream):
|
|
2982
2889
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
2983
2890
|
enable: String = Default(None),
|
2984
2891
|
extra_options: dict[str, Any] = None,
|
2985
|
-
**kwargs: Any,
|
2986
2892
|
) -> VideoStream:
|
2987
2893
|
"""
|
2988
2894
|
|
@@ -3019,8 +2925,7 @@ class VideoStream(FilterableStream):
|
|
3019
2925
|
"ts_sync_mode": ts_sync_mode,
|
3020
2926
|
"enable": enable,
|
3021
2927
|
}
|
3022
|
-
| (extra_options or {})
|
3023
|
-
| kwargs,
|
2928
|
+
| (extra_options or {}),
|
3024
2929
|
)
|
3025
2930
|
return filter_node.video(0)
|
3026
2931
|
|
@@ -3034,7 +2939,6 @@ class VideoStream(FilterableStream):
|
|
3034
2939
|
ct: Float = Default(0.019),
|
3035
2940
|
enable: String = Default(None),
|
3036
2941
|
extra_options: dict[str, Any] = None,
|
3037
|
-
**kwargs: Any,
|
3038
2942
|
) -> VideoStream:
|
3039
2943
|
"""
|
3040
2944
|
|
@@ -3066,8 +2970,7 @@ class VideoStream(FilterableStream):
|
|
3066
2970
|
"ct": ct,
|
3067
2971
|
"enable": enable,
|
3068
2972
|
}
|
3069
|
-
| (extra_options or {})
|
3070
|
-
| kwargs,
|
2973
|
+
| (extra_options or {}),
|
3071
2974
|
)
|
3072
2975
|
return filter_node.video(0)
|
3073
2976
|
|
@@ -3080,7 +2983,6 @@ class VideoStream(FilterableStream):
|
|
3080
2983
|
threshold3: Int = Default(65535),
|
3081
2984
|
enable: String = Default(None),
|
3082
2985
|
extra_options: dict[str, Any] = None,
|
3083
|
-
**kwargs: Any,
|
3084
2986
|
) -> VideoStream:
|
3085
2987
|
"""
|
3086
2988
|
|
@@ -3110,8 +3012,7 @@ class VideoStream(FilterableStream):
|
|
3110
3012
|
"threshold3": threshold3,
|
3111
3013
|
"enable": enable,
|
3112
3014
|
}
|
3113
|
-
| (extra_options or {})
|
3114
|
-
| kwargs,
|
3015
|
+
| (extra_options or {}),
|
3115
3016
|
)
|
3116
3017
|
return filter_node.video(0)
|
3117
3018
|
|
@@ -3122,7 +3023,6 @@ class VideoStream(FilterableStream):
|
|
3122
3023
|
mode: Int | Literal["am", "gm", "hm", "qm", "cm", "pm", "median"] | Default = Default("am"),
|
3123
3024
|
bypass: Boolean = Default(False),
|
3124
3025
|
extra_options: dict[str, Any] = None,
|
3125
|
-
**kwargs: Any,
|
3126
3026
|
) -> VideoStream:
|
3127
3027
|
"""
|
3128
3028
|
|
@@ -3148,12 +3048,16 @@ class VideoStream(FilterableStream):
|
|
3148
3048
|
"mode": mode,
|
3149
3049
|
"bypass": bypass,
|
3150
3050
|
}
|
3151
|
-
| (extra_options or {})
|
3152
|
-
| kwargs,
|
3051
|
+
| (extra_options or {}),
|
3153
3052
|
)
|
3154
3053
|
return filter_node.video(0)
|
3155
3054
|
|
3156
|
-
def dejudder(
|
3055
|
+
def dejudder(
|
3056
|
+
self,
|
3057
|
+
*,
|
3058
|
+
cycle: Int = Default(4),
|
3059
|
+
extra_options: dict[str, Any] = None,
|
3060
|
+
) -> VideoStream:
|
3157
3061
|
"""
|
3158
3062
|
|
3159
3063
|
Remove judder produced by pullup.
|
@@ -3174,8 +3078,7 @@ class VideoStream(FilterableStream):
|
|
3174
3078
|
**{
|
3175
3079
|
"cycle": cycle,
|
3176
3080
|
}
|
3177
|
-
| (extra_options or {})
|
3178
|
-
| kwargs,
|
3081
|
+
| (extra_options or {}),
|
3179
3082
|
)
|
3180
3083
|
return filter_node.video(0)
|
3181
3084
|
|
@@ -3189,7 +3092,6 @@ class VideoStream(FilterableStream):
|
|
3189
3092
|
show: Boolean = Default(False),
|
3190
3093
|
enable: String = Default(None),
|
3191
3094
|
extra_options: dict[str, Any] = None,
|
3192
|
-
**kwargs: Any,
|
3193
3095
|
) -> VideoStream:
|
3194
3096
|
"""
|
3195
3097
|
|
@@ -3221,8 +3123,7 @@ class VideoStream(FilterableStream):
|
|
3221
3123
|
"show": show,
|
3222
3124
|
"enable": enable,
|
3223
3125
|
}
|
3224
|
-
| (extra_options or {})
|
3225
|
-
| kwargs,
|
3126
|
+
| (extra_options or {}),
|
3226
3127
|
)
|
3227
3128
|
return filter_node.video(0)
|
3228
3129
|
|
@@ -3236,7 +3137,6 @@ class VideoStream(FilterableStream):
|
|
3236
3137
|
output: String = Default("y"),
|
3237
3138
|
enable: String = Default(None),
|
3238
3139
|
extra_options: dict[str, Any] = None,
|
3239
|
-
**kwargs: Any,
|
3240
3140
|
) -> VideoStream:
|
3241
3141
|
"""
|
3242
3142
|
|
@@ -3268,8 +3168,7 @@ class VideoStream(FilterableStream):
|
|
3268
3168
|
"output": output,
|
3269
3169
|
"enable": enable,
|
3270
3170
|
}
|
3271
|
-
| (extra_options or {})
|
3272
|
-
| kwargs,
|
3171
|
+
| (extra_options or {}),
|
3273
3172
|
)
|
3274
3173
|
return filter_node.video(0)
|
3275
3174
|
|
@@ -3289,7 +3188,6 @@ class VideoStream(FilterableStream):
|
|
3289
3188
|
filename: String = Default(None),
|
3290
3189
|
opencl: Boolean = Default(False),
|
3291
3190
|
extra_options: dict[str, Any] = None,
|
3292
|
-
**kwargs: Any,
|
3293
3191
|
) -> VideoStream:
|
3294
3192
|
"""
|
3295
3193
|
|
@@ -3333,8 +3231,7 @@ class VideoStream(FilterableStream):
|
|
3333
3231
|
"filename": filename,
|
3334
3232
|
"opencl": opencl,
|
3335
3233
|
}
|
3336
|
-
| (extra_options or {})
|
3337
|
-
| kwargs,
|
3234
|
+
| (extra_options or {}),
|
3338
3235
|
)
|
3339
3236
|
return filter_node.video(0)
|
3340
3237
|
|
@@ -3351,7 +3248,6 @@ class VideoStream(FilterableStream):
|
|
3351
3248
|
alpha: Boolean = Default(False),
|
3352
3249
|
enable: String = Default(None),
|
3353
3250
|
extra_options: dict[str, Any] = None,
|
3354
|
-
**kwargs: Any,
|
3355
3251
|
) -> VideoStream:
|
3356
3252
|
"""
|
3357
3253
|
|
@@ -3389,8 +3285,7 @@ class VideoStream(FilterableStream):
|
|
3389
3285
|
"alpha": alpha,
|
3390
3286
|
"enable": enable,
|
3391
3287
|
}
|
3392
|
-
| (extra_options or {})
|
3393
|
-
| kwargs,
|
3288
|
+
| (extra_options or {}),
|
3394
3289
|
)
|
3395
3290
|
return filter_node.video(0)
|
3396
3291
|
|
@@ -3401,7 +3296,6 @@ class VideoStream(FilterableStream):
|
|
3401
3296
|
pattern: String = Default("23"),
|
3402
3297
|
start_frame: Int = Default(0),
|
3403
3298
|
extra_options: dict[str, Any] = None,
|
3404
|
-
**kwargs: Any,
|
3405
3299
|
) -> VideoStream:
|
3406
3300
|
"""
|
3407
3301
|
|
@@ -3427,8 +3321,7 @@ class VideoStream(FilterableStream):
|
|
3427
3321
|
"pattern": pattern,
|
3428
3322
|
"start_frame": start_frame,
|
3429
3323
|
}
|
3430
|
-
| (extra_options or {})
|
3431
|
-
| kwargs,
|
3324
|
+
| (extra_options or {}),
|
3432
3325
|
)
|
3433
3326
|
return filter_node.video(0)
|
3434
3327
|
|
@@ -3442,7 +3335,6 @@ class VideoStream(FilterableStream):
|
|
3442
3335
|
threshold3: Int = Default(65535),
|
3443
3336
|
enable: String = Default(None),
|
3444
3337
|
extra_options: dict[str, Any] = None,
|
3445
|
-
**kwargs: Any,
|
3446
3338
|
) -> VideoStream:
|
3447
3339
|
"""
|
3448
3340
|
|
@@ -3474,8 +3366,7 @@ class VideoStream(FilterableStream):
|
|
3474
3366
|
"threshold3": threshold3,
|
3475
3367
|
"enable": enable,
|
3476
3368
|
}
|
3477
|
-
| (extra_options or {})
|
3478
|
-
| kwargs,
|
3369
|
+
| (extra_options or {}),
|
3479
3370
|
)
|
3480
3371
|
return filter_node.video(0)
|
3481
3372
|
|
@@ -3487,7 +3378,6 @@ class VideoStream(FilterableStream):
|
|
3487
3378
|
edge: Int | Literal["blank", "smear", "wrap", "mirror"] | Default = Default("smear"),
|
3488
3379
|
enable: String = Default(None),
|
3489
3380
|
extra_options: dict[str, Any] = None,
|
3490
|
-
**kwargs: Any,
|
3491
3381
|
) -> VideoStream:
|
3492
3382
|
"""
|
3493
3383
|
|
@@ -3513,8 +3403,7 @@ class VideoStream(FilterableStream):
|
|
3513
3403
|
"edge": edge,
|
3514
3404
|
"enable": enable,
|
3515
3405
|
}
|
3516
|
-
| (extra_options or {})
|
3517
|
-
| kwargs,
|
3406
|
+
| (extra_options or {}),
|
3518
3407
|
)
|
3519
3408
|
return filter_node.video(0)
|
3520
3409
|
|
@@ -3532,7 +3421,6 @@ class VideoStream(FilterableStream):
|
|
3532
3421
|
labels: String = Default(None),
|
3533
3422
|
target: String = Default(None),
|
3534
3423
|
extra_options: dict[str, Any] = None,
|
3535
|
-
**kwargs: Any,
|
3536
3424
|
) -> VideoStream:
|
3537
3425
|
"""
|
3538
3426
|
|
@@ -3572,8 +3460,7 @@ class VideoStream(FilterableStream):
|
|
3572
3460
|
"labels": labels,
|
3573
3461
|
"target": target,
|
3574
3462
|
}
|
3575
|
-
| (extra_options or {})
|
3576
|
-
| kwargs,
|
3463
|
+
| (extra_options or {}),
|
3577
3464
|
)
|
3578
3465
|
return filter_node.video(0)
|
3579
3466
|
|
@@ -3590,7 +3477,6 @@ class VideoStream(FilterableStream):
|
|
3590
3477
|
confidence: Float = Default(0.5),
|
3591
3478
|
labels: String = Default(None),
|
3592
3479
|
extra_options: dict[str, Any] = None,
|
3593
|
-
**kwargs: Any,
|
3594
3480
|
) -> VideoStream:
|
3595
3481
|
"""
|
3596
3482
|
|
@@ -3628,8 +3514,7 @@ class VideoStream(FilterableStream):
|
|
3628
3514
|
"confidence": confidence,
|
3629
3515
|
"labels": labels,
|
3630
3516
|
}
|
3631
|
-
| (extra_options or {})
|
3632
|
-
| kwargs,
|
3517
|
+
| (extra_options or {}),
|
3633
3518
|
)
|
3634
3519
|
return filter_node.video(0)
|
3635
3520
|
|
@@ -3644,7 +3529,6 @@ class VideoStream(FilterableStream):
|
|
3644
3529
|
options: String = Default(None),
|
3645
3530
|
_async: Boolean = Default(True),
|
3646
3531
|
extra_options: dict[str, Any] = None,
|
3647
|
-
**kwargs: Any,
|
3648
3532
|
) -> VideoStream:
|
3649
3533
|
"""
|
3650
3534
|
|
@@ -3678,8 +3562,7 @@ class VideoStream(FilterableStream):
|
|
3678
3562
|
"options": options,
|
3679
3563
|
"async": _async,
|
3680
3564
|
}
|
3681
|
-
| (extra_options or {})
|
3682
|
-
| kwargs,
|
3565
|
+
| (extra_options or {}),
|
3683
3566
|
)
|
3684
3567
|
return filter_node.video(0)
|
3685
3568
|
|
@@ -3688,7 +3571,6 @@ class VideoStream(FilterableStream):
|
|
3688
3571
|
*,
|
3689
3572
|
first_field: Int | Literal["top", "t", "bottom", "b"] | Default = Default("top"),
|
3690
3573
|
extra_options: dict[str, Any] = None,
|
3691
|
-
**kwargs: Any,
|
3692
3574
|
) -> VideoStream:
|
3693
3575
|
"""
|
3694
3576
|
|
@@ -3710,8 +3592,7 @@ class VideoStream(FilterableStream):
|
|
3710
3592
|
**{
|
3711
3593
|
"first_field": first_field,
|
3712
3594
|
}
|
3713
|
-
| (extra_options or {})
|
3714
|
-
| kwargs,
|
3595
|
+
| (extra_options or {}),
|
3715
3596
|
)
|
3716
3597
|
return filter_node.video(0)
|
3717
3598
|
|
@@ -3728,7 +3609,6 @@ class VideoStream(FilterableStream):
|
|
3728
3609
|
box_source: String = Default(None),
|
3729
3610
|
enable: String = Default(None),
|
3730
3611
|
extra_options: dict[str, Any] = None,
|
3731
|
-
**kwargs: Any,
|
3732
3612
|
) -> VideoStream:
|
3733
3613
|
"""
|
3734
3614
|
|
@@ -3766,8 +3646,7 @@ class VideoStream(FilterableStream):
|
|
3766
3646
|
"box_source": box_source,
|
3767
3647
|
"enable": enable,
|
3768
3648
|
}
|
3769
|
-
| (extra_options or {})
|
3770
|
-
| kwargs,
|
3649
|
+
| (extra_options or {}),
|
3771
3650
|
)
|
3772
3651
|
return filter_node.video(0)
|
3773
3652
|
|
@@ -3790,7 +3669,6 @@ class VideoStream(FilterableStream):
|
|
3790
3669
|
size: Image_size = Default("900x256"),
|
3791
3670
|
rate: Video_rate = Default("25"),
|
3792
3671
|
extra_options: dict[str, Any] = None,
|
3793
|
-
**kwargs: Any,
|
3794
3672
|
) -> VideoStream:
|
3795
3673
|
"""
|
3796
3674
|
|
@@ -3840,8 +3718,7 @@ class VideoStream(FilterableStream):
|
|
3840
3718
|
"size": size,
|
3841
3719
|
"rate": rate,
|
3842
3720
|
}
|
3843
|
-
| (extra_options or {})
|
3844
|
-
| kwargs,
|
3721
|
+
| (extra_options or {}),
|
3845
3722
|
)
|
3846
3723
|
return filter_node.video(0)
|
3847
3724
|
|
@@ -3857,7 +3734,6 @@ class VideoStream(FilterableStream):
|
|
3857
3734
|
replace: Boolean = Default(False),
|
3858
3735
|
enable: String = Default(None),
|
3859
3736
|
extra_options: dict[str, Any] = None,
|
3860
|
-
**kwargs: Any,
|
3861
3737
|
) -> VideoStream:
|
3862
3738
|
"""
|
3863
3739
|
|
@@ -3893,8 +3769,7 @@ class VideoStream(FilterableStream):
|
|
3893
3769
|
"replace": replace,
|
3894
3770
|
"enable": enable,
|
3895
3771
|
}
|
3896
|
-
| (extra_options or {})
|
3897
|
-
| kwargs,
|
3772
|
+
| (extra_options or {}),
|
3898
3773
|
)
|
3899
3774
|
return filter_node.video(0)
|
3900
3775
|
|
@@ -3957,7 +3832,6 @@ class VideoStream(FilterableStream):
|
|
3957
3832
|
| Default = Default("0"),
|
3958
3833
|
enable: String = Default(None),
|
3959
3834
|
extra_options: dict[str, Any] = None,
|
3960
|
-
**kwargs: Any,
|
3961
3835
|
) -> VideoStream:
|
3962
3836
|
"""
|
3963
3837
|
|
@@ -4047,8 +3921,7 @@ class VideoStream(FilterableStream):
|
|
4047
3921
|
"ft_load_flags": ft_load_flags,
|
4048
3922
|
"enable": enable,
|
4049
3923
|
}
|
4050
|
-
| (extra_options or {})
|
4051
|
-
| kwargs,
|
3924
|
+
| (extra_options or {}),
|
4052
3925
|
)
|
4053
3926
|
return filter_node.video(0)
|
4054
3927
|
|
@@ -4061,7 +3934,6 @@ class VideoStream(FilterableStream):
|
|
4061
3934
|
planes: Flags | Literal["y", "u", "v", "r", "g", "b"] | Default = Default("y+u+v+r+g+b"),
|
4062
3935
|
enable: String = Default(None),
|
4063
3936
|
extra_options: dict[str, Any] = None,
|
4064
|
-
**kwargs: Any,
|
4065
3937
|
) -> VideoStream:
|
4066
3938
|
"""
|
4067
3939
|
|
@@ -4091,8 +3963,7 @@ class VideoStream(FilterableStream):
|
|
4091
3963
|
"planes": planes,
|
4092
3964
|
"enable": enable,
|
4093
3965
|
}
|
4094
|
-
| (extra_options or {})
|
4095
|
-
| kwargs,
|
3966
|
+
| (extra_options or {}),
|
4096
3967
|
)
|
4097
3968
|
return filter_node.video(0)
|
4098
3969
|
|
@@ -4105,7 +3976,6 @@ class VideoStream(FilterableStream):
|
|
4105
3976
|
pal8: Boolean = Default(False),
|
4106
3977
|
use_alpha: Boolean = Default(False),
|
4107
3978
|
extra_options: dict[str, Any] = None,
|
4108
|
-
**kwargs: Any,
|
4109
3979
|
) -> VideoStream:
|
4110
3980
|
"""
|
4111
3981
|
|
@@ -4135,8 +4005,7 @@ class VideoStream(FilterableStream):
|
|
4135
4005
|
"pal8": pal8,
|
4136
4006
|
"use_alpha": use_alpha,
|
4137
4007
|
}
|
4138
|
-
| (extra_options or {})
|
4139
|
-
| kwargs,
|
4008
|
+
| (extra_options or {}),
|
4140
4009
|
)
|
4141
4010
|
return filter_node.video(0)
|
4142
4011
|
|
@@ -4146,7 +4015,6 @@ class VideoStream(FilterableStream):
|
|
4146
4015
|
mode: Int | Literal["normal", "diff"] | Default = Default("normal"),
|
4147
4016
|
enable: String = Default(None),
|
4148
4017
|
extra_options: dict[str, Any] = None,
|
4149
|
-
**kwargs: Any,
|
4150
4018
|
) -> VideoStream:
|
4151
4019
|
"""
|
4152
4020
|
|
@@ -4170,12 +4038,16 @@ class VideoStream(FilterableStream):
|
|
4170
4038
|
"mode": mode,
|
4171
4039
|
"enable": enable,
|
4172
4040
|
}
|
4173
|
-
| (extra_options or {})
|
4174
|
-
| kwargs,
|
4041
|
+
| (extra_options or {}),
|
4175
4042
|
)
|
4176
4043
|
return filter_node.video(0)
|
4177
4044
|
|
4178
|
-
def epx(
|
4045
|
+
def epx(
|
4046
|
+
self,
|
4047
|
+
*,
|
4048
|
+
n: Int = Default(3),
|
4049
|
+
extra_options: dict[str, Any] = None,
|
4050
|
+
) -> VideoStream:
|
4179
4051
|
"""
|
4180
4052
|
|
4181
4053
|
Scale the input using EPX algorithm.
|
@@ -4196,8 +4068,7 @@ class VideoStream(FilterableStream):
|
|
4196
4068
|
**{
|
4197
4069
|
"n": n,
|
4198
4070
|
}
|
4199
|
-
| (extra_options or {})
|
4200
|
-
| kwargs,
|
4071
|
+
| (extra_options or {}),
|
4201
4072
|
)
|
4202
4073
|
return filter_node.video(0)
|
4203
4074
|
|
@@ -4215,7 +4086,6 @@ class VideoStream(FilterableStream):
|
|
4215
4086
|
eval: Int | Literal["init", "frame"] | Default = Default("init"),
|
4216
4087
|
enable: String = Default(None),
|
4217
4088
|
extra_options: dict[str, Any] = None,
|
4218
|
-
**kwargs: Any,
|
4219
4089
|
) -> VideoStream:
|
4220
4090
|
"""
|
4221
4091
|
|
@@ -4255,8 +4125,7 @@ class VideoStream(FilterableStream):
|
|
4255
4125
|
"eval": eval,
|
4256
4126
|
"enable": enable,
|
4257
4127
|
}
|
4258
|
-
| (extra_options or {})
|
4259
|
-
| kwargs,
|
4128
|
+
| (extra_options or {}),
|
4260
4129
|
)
|
4261
4130
|
return filter_node.video(0)
|
4262
4131
|
|
@@ -4270,7 +4139,6 @@ class VideoStream(FilterableStream):
|
|
4270
4139
|
threshold3: Int = Default(65535),
|
4271
4140
|
enable: String = Default(None),
|
4272
4141
|
extra_options: dict[str, Any] = None,
|
4273
|
-
**kwargs: Any,
|
4274
4142
|
) -> VideoStream:
|
4275
4143
|
"""
|
4276
4144
|
|
@@ -4302,8 +4170,7 @@ class VideoStream(FilterableStream):
|
|
4302
4170
|
"threshold3": threshold3,
|
4303
4171
|
"enable": enable,
|
4304
4172
|
}
|
4305
|
-
| (extra_options or {})
|
4306
|
-
| kwargs,
|
4173
|
+
| (extra_options or {}),
|
4307
4174
|
)
|
4308
4175
|
return filter_node.video(0)
|
4309
4176
|
|
@@ -4321,7 +4188,6 @@ class VideoStream(FilterableStream):
|
|
4321
4188
|
interp: Int | Literal["2p", "4p", "6p"] | Default = Default("4p"),
|
4322
4189
|
enable: String = Default(None),
|
4323
4190
|
extra_options: dict[str, Any] = None,
|
4324
|
-
**kwargs: Any,
|
4325
4191
|
) -> VideoStream:
|
4326
4192
|
"""
|
4327
4193
|
|
@@ -4361,8 +4227,7 @@ class VideoStream(FilterableStream):
|
|
4361
4227
|
"interp": interp,
|
4362
4228
|
"enable": enable,
|
4363
4229
|
}
|
4364
|
-
| (extra_options or {})
|
4365
|
-
| kwargs,
|
4230
|
+
| (extra_options or {}),
|
4366
4231
|
)
|
4367
4232
|
return filter_node.video(0)
|
4368
4233
|
|
@@ -4373,7 +4238,6 @@ class VideoStream(FilterableStream):
|
|
4373
4238
|
black: Float = Default(0.0),
|
4374
4239
|
enable: String = Default(None),
|
4375
4240
|
extra_options: dict[str, Any] = None,
|
4376
|
-
**kwargs: Any,
|
4377
4241
|
) -> VideoStream:
|
4378
4242
|
"""
|
4379
4243
|
|
@@ -4399,8 +4263,7 @@ class VideoStream(FilterableStream):
|
|
4399
4263
|
"black": black,
|
4400
4264
|
"enable": enable,
|
4401
4265
|
}
|
4402
|
-
| (extra_options or {})
|
4403
|
-
| kwargs,
|
4266
|
+
| (extra_options or {}),
|
4404
4267
|
)
|
4405
4268
|
return filter_node.video(0)
|
4406
4269
|
|
@@ -4409,7 +4272,6 @@ class VideoStream(FilterableStream):
|
|
4409
4272
|
*,
|
4410
4273
|
planes: Flags | Literal["y", "u", "v", "r", "g", "b", "a"] | Default = Default("r"),
|
4411
4274
|
extra_options: dict[str, Any] = None,
|
4412
|
-
**kwargs: Any,
|
4413
4275
|
) -> FilterNode:
|
4414
4276
|
"""
|
4415
4277
|
|
@@ -4436,8 +4298,7 @@ class VideoStream(FilterableStream):
|
|
4436
4298
|
**{
|
4437
4299
|
"planes": planes,
|
4438
4300
|
}
|
4439
|
-
| (extra_options or {})
|
4440
|
-
| kwargs,
|
4301
|
+
| (extra_options or {}),
|
4441
4302
|
)
|
4442
4303
|
|
4443
4304
|
return filter_node
|
@@ -4454,7 +4315,6 @@ class VideoStream(FilterableStream):
|
|
4454
4315
|
color: Color = Default("black"),
|
4455
4316
|
enable: String = Default(None),
|
4456
4317
|
extra_options: dict[str, Any] = None,
|
4457
|
-
**kwargs: Any,
|
4458
4318
|
) -> VideoStream:
|
4459
4319
|
"""
|
4460
4320
|
|
@@ -4490,8 +4350,7 @@ class VideoStream(FilterableStream):
|
|
4490
4350
|
"color": color,
|
4491
4351
|
"enable": enable,
|
4492
4352
|
}
|
4493
|
-
| (extra_options or {})
|
4494
|
-
| kwargs,
|
4353
|
+
| (extra_options or {}),
|
4495
4354
|
)
|
4496
4355
|
return filter_node.video(0)
|
4497
4356
|
|
@@ -4502,7 +4361,6 @@ class VideoStream(FilterableStream):
|
|
4502
4361
|
x: Int = Default(0),
|
4503
4362
|
w: Int = Default(0),
|
4504
4363
|
extra_options: dict[str, Any] = None,
|
4505
|
-
**kwargs: Any,
|
4506
4364
|
) -> tuple[VideoStream, VideoStream,]:
|
4507
4365
|
"""
|
4508
4366
|
|
@@ -4528,8 +4386,7 @@ class VideoStream(FilterableStream):
|
|
4528
4386
|
"x": x,
|
4529
4387
|
"w": w,
|
4530
4388
|
}
|
4531
|
-
| (extra_options or {})
|
4532
|
-
| kwargs,
|
4389
|
+
| (extra_options or {}),
|
4533
4390
|
)
|
4534
4391
|
return (
|
4535
4392
|
filter_node.video(0),
|
@@ -4575,7 +4432,6 @@ class VideoStream(FilterableStream):
|
|
4575
4432
|
| Default = Default("hann"),
|
4576
4433
|
enable: String = Default(None),
|
4577
4434
|
extra_options: dict[str, Any] = None,
|
4578
|
-
**kwargs: Any,
|
4579
4435
|
) -> VideoStream:
|
4580
4436
|
"""
|
4581
4437
|
|
@@ -4615,8 +4471,7 @@ class VideoStream(FilterableStream):
|
|
4615
4471
|
"window": window,
|
4616
4472
|
"enable": enable,
|
4617
4473
|
}
|
4618
|
-
| (extra_options or {})
|
4619
|
-
| kwargs,
|
4474
|
+
| (extra_options or {}),
|
4620
4475
|
)
|
4621
4476
|
return filter_node.video(0)
|
4622
4477
|
|
@@ -4632,7 +4487,6 @@ class VideoStream(FilterableStream):
|
|
4632
4487
|
eval: Int | Literal["init", "frame"] | Default = Default("init"),
|
4633
4488
|
enable: String = Default(None),
|
4634
4489
|
extra_options: dict[str, Any] = None,
|
4635
|
-
**kwargs: Any,
|
4636
4490
|
) -> VideoStream:
|
4637
4491
|
"""
|
4638
4492
|
|
@@ -4668,8 +4522,7 @@ class VideoStream(FilterableStream):
|
|
4668
4522
|
"eval": eval,
|
4669
4523
|
"enable": enable,
|
4670
4524
|
}
|
4671
|
-
| (extra_options or {})
|
4672
|
-
| kwargs,
|
4525
|
+
| (extra_options or {}),
|
4673
4526
|
)
|
4674
4527
|
return filter_node.video(0)
|
4675
4528
|
|
@@ -4678,7 +4531,6 @@ class VideoStream(FilterableStream):
|
|
4678
4531
|
*,
|
4679
4532
|
type: Int | Literal["top", "bottom"] | Default = Default("top"),
|
4680
4533
|
extra_options: dict[str, Any] = None,
|
4681
|
-
**kwargs: Any,
|
4682
4534
|
) -> VideoStream:
|
4683
4535
|
"""
|
4684
4536
|
|
@@ -4700,8 +4552,7 @@ class VideoStream(FilterableStream):
|
|
4700
4552
|
**{
|
4701
4553
|
"type": type,
|
4702
4554
|
}
|
4703
|
-
| (extra_options or {})
|
4704
|
-
| kwargs,
|
4555
|
+
| (extra_options or {}),
|
4705
4556
|
)
|
4706
4557
|
return filter_node.video(0)
|
4707
4558
|
|
@@ -4711,7 +4562,6 @@ class VideoStream(FilterableStream):
|
|
4711
4562
|
hint: String = Default(None),
|
4712
4563
|
mode: Int | Literal["absolute", "relative", "pattern"] | Default = Default("absolute"),
|
4713
4564
|
extra_options: dict[str, Any] = None,
|
4714
|
-
**kwargs: Any,
|
4715
4565
|
) -> VideoStream:
|
4716
4566
|
"""
|
4717
4567
|
|
@@ -4735,8 +4585,7 @@ class VideoStream(FilterableStream):
|
|
4735
4585
|
"hint": hint,
|
4736
4586
|
"mode": mode,
|
4737
4587
|
}
|
4738
|
-
| (extra_options or {})
|
4739
|
-
| kwargs,
|
4588
|
+
| (extra_options or {}),
|
4740
4589
|
)
|
4741
4590
|
return filter_node.video(0)
|
4742
4591
|
|
@@ -4746,7 +4595,6 @@ class VideoStream(FilterableStream):
|
|
4746
4595
|
order: Int | Literal["bff", "tff"] | Default = Default("tff"),
|
4747
4596
|
enable: String = Default(None),
|
4748
4597
|
extra_options: dict[str, Any] = None,
|
4749
|
-
**kwargs: Any,
|
4750
4598
|
) -> VideoStream:
|
4751
4599
|
"""
|
4752
4600
|
|
@@ -4770,8 +4618,7 @@ class VideoStream(FilterableStream):
|
|
4770
4618
|
"order": order,
|
4771
4619
|
"enable": enable,
|
4772
4620
|
}
|
4773
|
-
| (extra_options or {})
|
4774
|
-
| kwargs,
|
4621
|
+
| (extra_options or {}),
|
4775
4622
|
)
|
4776
4623
|
return filter_node.video(0)
|
4777
4624
|
|
@@ -4788,7 +4635,6 @@ class VideoStream(FilterableStream):
|
|
4788
4635
|
color: Color = Default("black"),
|
4789
4636
|
enable: String = Default(None),
|
4790
4637
|
extra_options: dict[str, Any] = None,
|
4791
|
-
**kwargs: Any,
|
4792
4638
|
) -> VideoStream:
|
4793
4639
|
"""
|
4794
4640
|
|
@@ -4822,8 +4668,7 @@ class VideoStream(FilterableStream):
|
|
4822
4668
|
"color": color,
|
4823
4669
|
"enable": enable,
|
4824
4670
|
}
|
4825
|
-
| (extra_options or {})
|
4826
|
-
| kwargs,
|
4671
|
+
| (extra_options or {}),
|
4827
4672
|
)
|
4828
4673
|
return filter_node.video(0)
|
4829
4674
|
|
@@ -4836,7 +4681,6 @@ class VideoStream(FilterableStream):
|
|
4836
4681
|
xmin: Int = Default(0),
|
4837
4682
|
discard: Boolean = Default(False),
|
4838
4683
|
extra_options: dict[str, Any] = None,
|
4839
|
-
**kwargs: Any,
|
4840
4684
|
) -> VideoStream:
|
4841
4685
|
"""
|
4842
4686
|
|
@@ -4866,8 +4710,7 @@ class VideoStream(FilterableStream):
|
|
4866
4710
|
"xmin": xmin,
|
4867
4711
|
"discard": discard,
|
4868
4712
|
}
|
4869
|
-
| (extra_options or {})
|
4870
|
-
| kwargs,
|
4713
|
+
| (extra_options or {}),
|
4871
4714
|
)
|
4872
4715
|
return filter_node.video(0)
|
4873
4716
|
|
@@ -4886,7 +4729,6 @@ class VideoStream(FilterableStream):
|
|
4886
4729
|
d3: Int = Default(0),
|
4887
4730
|
enable: String = Default(None),
|
4888
4731
|
extra_options: dict[str, Any] = None,
|
4889
|
-
**kwargs: Any,
|
4890
4732
|
) -> VideoStream:
|
4891
4733
|
"""
|
4892
4734
|
|
@@ -4928,13 +4770,15 @@ class VideoStream(FilterableStream):
|
|
4928
4770
|
"d3": d3,
|
4929
4771
|
"enable": enable,
|
4930
4772
|
}
|
4931
|
-
| (extra_options or {})
|
4932
|
-
| kwargs,
|
4773
|
+
| (extra_options or {}),
|
4933
4774
|
)
|
4934
4775
|
return filter_node.video(0)
|
4935
4776
|
|
4936
4777
|
def format(
|
4937
|
-
self,
|
4778
|
+
self,
|
4779
|
+
*,
|
4780
|
+
pix_fmts: String = Default(None),
|
4781
|
+
extra_options: dict[str, Any] = None,
|
4938
4782
|
) -> VideoStream:
|
4939
4783
|
"""
|
4940
4784
|
|
@@ -4956,8 +4800,7 @@ class VideoStream(FilterableStream):
|
|
4956
4800
|
**{
|
4957
4801
|
"pix_fmts": pix_fmts,
|
4958
4802
|
}
|
4959
|
-
| (extra_options or {})
|
4960
|
-
| kwargs,
|
4803
|
+
| (extra_options or {}),
|
4961
4804
|
)
|
4962
4805
|
return filter_node.video(0)
|
4963
4806
|
|
@@ -4969,7 +4812,6 @@ class VideoStream(FilterableStream):
|
|
4969
4812
|
round: Int | Literal["zero", "inf", "down", "up", "near"] | Default = Default("near"),
|
4970
4813
|
eof_action: Int | Literal["round", "pass"] | Default = Default("round"),
|
4971
4814
|
extra_options: dict[str, Any] = None,
|
4972
|
-
**kwargs: Any,
|
4973
4815
|
) -> VideoStream:
|
4974
4816
|
"""
|
4975
4817
|
|
@@ -4997,8 +4839,7 @@ class VideoStream(FilterableStream):
|
|
4997
4839
|
"round": round,
|
4998
4840
|
"eof_action": eof_action,
|
4999
4841
|
}
|
5000
|
-
| (extra_options or {})
|
5001
|
-
| kwargs,
|
4842
|
+
| (extra_options or {}),
|
5002
4843
|
)
|
5003
4844
|
return filter_node.video(0)
|
5004
4845
|
|
@@ -5008,7 +4849,6 @@ class VideoStream(FilterableStream):
|
|
5008
4849
|
*,
|
5009
4850
|
format: Int | Literal["sbs", "tab", "frameseq", "lines", "columns"] | Default = Default("sbs"),
|
5010
4851
|
extra_options: dict[str, Any] = None,
|
5011
|
-
**kwargs: Any,
|
5012
4852
|
) -> VideoStream:
|
5013
4853
|
"""
|
5014
4854
|
|
@@ -5031,8 +4871,7 @@ class VideoStream(FilterableStream):
|
|
5031
4871
|
**{
|
5032
4872
|
"format": format,
|
5033
4873
|
}
|
5034
|
-
| (extra_options or {})
|
5035
|
-
| kwargs,
|
4874
|
+
| (extra_options or {}),
|
5036
4875
|
)
|
5037
4876
|
return filter_node.video(0)
|
5038
4877
|
|
@@ -5045,7 +4884,6 @@ class VideoStream(FilterableStream):
|
|
5045
4884
|
scene: Double = Default(8.2),
|
5046
4885
|
flags: Flags | Literal["scene_change_detect", "scd"] | Default = Default("scene_change_detect+scd"),
|
5047
4886
|
extra_options: dict[str, Any] = None,
|
5048
|
-
**kwargs: Any,
|
5049
4887
|
) -> VideoStream:
|
5050
4888
|
"""
|
5051
4889
|
|
@@ -5075,8 +4913,7 @@ class VideoStream(FilterableStream):
|
|
5075
4913
|
"scene": scene,
|
5076
4914
|
"flags": flags,
|
5077
4915
|
}
|
5078
|
-
| (extra_options or {})
|
5079
|
-
| kwargs,
|
4916
|
+
| (extra_options or {}),
|
5080
4917
|
)
|
5081
4918
|
return filter_node.video(0)
|
5082
4919
|
|
@@ -5086,7 +4923,6 @@ class VideoStream(FilterableStream):
|
|
5086
4923
|
step: Int = Default(1),
|
5087
4924
|
enable: String = Default(None),
|
5088
4925
|
extra_options: dict[str, Any] = None,
|
5089
|
-
**kwargs: Any,
|
5090
4926
|
) -> VideoStream:
|
5091
4927
|
"""
|
5092
4928
|
|
@@ -5110,8 +4946,7 @@ class VideoStream(FilterableStream):
|
|
5110
4946
|
"step": step,
|
5111
4947
|
"enable": enable,
|
5112
4948
|
}
|
5113
|
-
| (extra_options or {})
|
5114
|
-
| kwargs,
|
4949
|
+
| (extra_options or {}),
|
5115
4950
|
)
|
5116
4951
|
return filter_node.video(0)
|
5117
4952
|
|
@@ -5121,7 +4956,6 @@ class VideoStream(FilterableStream):
|
|
5121
4956
|
n: Double = Default(0.001),
|
5122
4957
|
d: Duration = Default(2.0),
|
5123
4958
|
extra_options: dict[str, Any] = None,
|
5124
|
-
**kwargs: Any,
|
5125
4959
|
) -> VideoStream:
|
5126
4960
|
"""
|
5127
4961
|
|
@@ -5145,8 +4979,7 @@ class VideoStream(FilterableStream):
|
|
5145
4979
|
"n": n,
|
5146
4980
|
"d": d,
|
5147
4981
|
}
|
5148
|
-
| (extra_options or {})
|
5149
|
-
| kwargs,
|
4982
|
+
| (extra_options or {}),
|
5150
4983
|
)
|
5151
4984
|
return filter_node.video(0)
|
5152
4985
|
|
@@ -5158,7 +4991,6 @@ class VideoStream(FilterableStream):
|
|
5158
4991
|
last: Int64 = Default(0),
|
5159
4992
|
replace: Int64 = Default(0),
|
5160
4993
|
extra_options: dict[str, Any] = None,
|
5161
|
-
**kwargs: Any,
|
5162
4994
|
) -> VideoStream:
|
5163
4995
|
"""
|
5164
4996
|
|
@@ -5185,8 +5017,7 @@ class VideoStream(FilterableStream):
|
|
5185
5017
|
"last": last,
|
5186
5018
|
"replace": replace,
|
5187
5019
|
}
|
5188
|
-
| (extra_options or {})
|
5189
|
-
| kwargs,
|
5020
|
+
| (extra_options or {}),
|
5190
5021
|
)
|
5191
5022
|
return filter_node.video(0)
|
5192
5023
|
|
@@ -5197,7 +5028,6 @@ class VideoStream(FilterableStream):
|
|
5197
5028
|
filter_params: String = Default(None),
|
5198
5029
|
enable: String = Default(None),
|
5199
5030
|
extra_options: dict[str, Any] = None,
|
5200
|
-
**kwargs: Any,
|
5201
5031
|
) -> VideoStream:
|
5202
5032
|
"""
|
5203
5033
|
|
@@ -5223,8 +5053,7 @@ class VideoStream(FilterableStream):
|
|
5223
5053
|
"filter_params": filter_params,
|
5224
5054
|
"enable": enable,
|
5225
5055
|
}
|
5226
|
-
| (extra_options or {})
|
5227
|
-
| kwargs,
|
5056
|
+
| (extra_options or {}),
|
5228
5057
|
)
|
5229
5058
|
return filter_node.video(0)
|
5230
5059
|
|
@@ -5237,7 +5066,6 @@ class VideoStream(FilterableStream):
|
|
5237
5066
|
use_bframe_qp: Boolean = Default(False),
|
5238
5067
|
enable: String = Default(None),
|
5239
5068
|
extra_options: dict[str, Any] = None,
|
5240
|
-
**kwargs: Any,
|
5241
5069
|
) -> VideoStream:
|
5242
5070
|
"""
|
5243
5071
|
|
@@ -5267,8 +5095,7 @@ class VideoStream(FilterableStream):
|
|
5267
5095
|
"use_bframe_qp": use_bframe_qp,
|
5268
5096
|
"enable": enable,
|
5269
5097
|
}
|
5270
|
-
| (extra_options or {})
|
5271
|
-
| kwargs,
|
5098
|
+
| (extra_options or {}),
|
5272
5099
|
)
|
5273
5100
|
return filter_node.video(0)
|
5274
5101
|
|
@@ -5281,7 +5108,6 @@ class VideoStream(FilterableStream):
|
|
5281
5108
|
sigmaV: Float = Default(-1.0),
|
5282
5109
|
enable: String = Default(None),
|
5283
5110
|
extra_options: dict[str, Any] = None,
|
5284
|
-
**kwargs: Any,
|
5285
5111
|
) -> VideoStream:
|
5286
5112
|
"""
|
5287
5113
|
|
@@ -5311,8 +5137,7 @@ class VideoStream(FilterableStream):
|
|
5311
5137
|
"sigmaV": sigmaV,
|
5312
5138
|
"enable": enable,
|
5313
5139
|
}
|
5314
|
-
| (extra_options or {})
|
5315
|
-
| kwargs,
|
5140
|
+
| (extra_options or {}),
|
5316
5141
|
)
|
5317
5142
|
return filter_node.video(0)
|
5318
5143
|
|
@@ -5329,7 +5154,6 @@ class VideoStream(FilterableStream):
|
|
5329
5154
|
interpolation: Int | Literal["nearest", "n", "bilinear", "b"] | Default = Default("bilinear"),
|
5330
5155
|
enable: String = Default(None),
|
5331
5156
|
extra_options: dict[str, Any] = None,
|
5332
|
-
**kwargs: Any,
|
5333
5157
|
) -> VideoStream:
|
5334
5158
|
"""
|
5335
5159
|
|
@@ -5367,8 +5191,7 @@ class VideoStream(FilterableStream):
|
|
5367
5191
|
"interpolation": interpolation,
|
5368
5192
|
"enable": enable,
|
5369
5193
|
}
|
5370
|
-
| (extra_options or {})
|
5371
|
-
| kwargs,
|
5194
|
+
| (extra_options or {}),
|
5372
5195
|
)
|
5373
5196
|
return filter_node.video(0)
|
5374
5197
|
|
@@ -5379,7 +5202,6 @@ class VideoStream(FilterableStream):
|
|
5379
5202
|
radius: Int = Default(16),
|
5380
5203
|
enable: String = Default(None),
|
5381
5204
|
extra_options: dict[str, Any] = None,
|
5382
|
-
**kwargs: Any,
|
5383
5205
|
) -> VideoStream:
|
5384
5206
|
"""
|
5385
5207
|
|
@@ -5405,8 +5227,7 @@ class VideoStream(FilterableStream):
|
|
5405
5227
|
"radius": radius,
|
5406
5228
|
"enable": enable,
|
5407
5229
|
}
|
5408
|
-
| (extra_options or {})
|
5409
|
-
| kwargs,
|
5230
|
+
| (extra_options or {}),
|
5410
5231
|
)
|
5411
5232
|
return filter_node.video(0)
|
5412
5233
|
|
@@ -5441,7 +5262,6 @@ class VideoStream(FilterableStream):
|
|
5441
5262
|
| Default = Default("all+queue"),
|
5442
5263
|
rate: Video_rate = Default("25"),
|
5443
5264
|
extra_options: dict[str, Any] = None,
|
5444
|
-
**kwargs: Any,
|
5445
5265
|
) -> VideoStream:
|
5446
5266
|
"""
|
5447
5267
|
|
@@ -5471,13 +5291,15 @@ class VideoStream(FilterableStream):
|
|
5471
5291
|
"flags": flags,
|
5472
5292
|
"rate": rate,
|
5473
5293
|
}
|
5474
|
-
| (extra_options or {})
|
5475
|
-
| kwargs,
|
5294
|
+
| (extra_options or {}),
|
5476
5295
|
)
|
5477
5296
|
return filter_node.video(0)
|
5478
5297
|
|
5479
5298
|
def grayworld(
|
5480
|
-
self,
|
5299
|
+
self,
|
5300
|
+
*,
|
5301
|
+
enable: String = Default(None),
|
5302
|
+
extra_options: dict[str, Any] = None,
|
5481
5303
|
) -> VideoStream:
|
5482
5304
|
"""
|
5483
5305
|
|
@@ -5499,8 +5321,7 @@ class VideoStream(FilterableStream):
|
|
5499
5321
|
**{
|
5500
5322
|
"enable": enable,
|
5501
5323
|
}
|
5502
|
-
| (extra_options or {})
|
5503
|
-
| kwargs,
|
5324
|
+
| (extra_options or {}),
|
5504
5325
|
)
|
5505
5326
|
return filter_node.video(0)
|
5506
5327
|
|
@@ -5512,7 +5333,6 @@ class VideoStream(FilterableStream):
|
|
5512
5333
|
sigma: Double = Default(1.0),
|
5513
5334
|
enable: String = Default(None),
|
5514
5335
|
extra_options: dict[str, Any] = None,
|
5515
|
-
**kwargs: Any,
|
5516
5336
|
) -> VideoStream:
|
5517
5337
|
"""
|
5518
5338
|
|
@@ -5540,8 +5360,7 @@ class VideoStream(FilterableStream):
|
|
5540
5360
|
"sigma": sigma,
|
5541
5361
|
"enable": enable,
|
5542
5362
|
}
|
5543
|
-
| (extra_options or {})
|
5544
|
-
| kwargs,
|
5363
|
+
| (extra_options or {}),
|
5545
5364
|
)
|
5546
5365
|
return filter_node.video(0)
|
5547
5366
|
|
@@ -5559,7 +5378,6 @@ class VideoStream(FilterableStream):
|
|
5559
5378
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
5560
5379
|
enable: String = Default(None),
|
5561
5380
|
extra_options: dict[str, Any] = None,
|
5562
|
-
**kwargs: Any,
|
5563
5381
|
) -> VideoStream:
|
5564
5382
|
"""
|
5565
5383
|
|
@@ -5594,13 +5412,15 @@ class VideoStream(FilterableStream):
|
|
5594
5412
|
"ts_sync_mode": ts_sync_mode,
|
5595
5413
|
"enable": enable,
|
5596
5414
|
}
|
5597
|
-
| (extra_options or {})
|
5598
|
-
| kwargs,
|
5415
|
+
| (extra_options or {}),
|
5599
5416
|
)
|
5600
5417
|
return filter_node.video(0)
|
5601
5418
|
|
5602
5419
|
def hflip(
|
5603
|
-
self,
|
5420
|
+
self,
|
5421
|
+
*,
|
5422
|
+
enable: String = Default(None),
|
5423
|
+
extra_options: dict[str, Any] = None,
|
5604
5424
|
) -> VideoStream:
|
5605
5425
|
"""
|
5606
5426
|
|
@@ -5622,8 +5442,7 @@ class VideoStream(FilterableStream):
|
|
5622
5442
|
**{
|
5623
5443
|
"enable": enable,
|
5624
5444
|
}
|
5625
|
-
| (extra_options or {})
|
5626
|
-
| kwargs,
|
5445
|
+
| (extra_options or {}),
|
5627
5446
|
)
|
5628
5447
|
return filter_node.video(0)
|
5629
5448
|
|
@@ -5635,7 +5454,6 @@ class VideoStream(FilterableStream):
|
|
5635
5454
|
antibanding: Int | Literal["none", "weak", "strong"] | Default = Default("none"),
|
5636
5455
|
enable: String = Default(None),
|
5637
5456
|
extra_options: dict[str, Any] = None,
|
5638
|
-
**kwargs: Any,
|
5639
5457
|
) -> VideoStream:
|
5640
5458
|
"""
|
5641
5459
|
|
@@ -5663,8 +5481,7 @@ class VideoStream(FilterableStream):
|
|
5663
5481
|
"antibanding": antibanding,
|
5664
5482
|
"enable": enable,
|
5665
5483
|
}
|
5666
|
-
| (extra_options or {})
|
5667
|
-
| kwargs,
|
5484
|
+
| (extra_options or {}),
|
5668
5485
|
)
|
5669
5486
|
return filter_node.video(0)
|
5670
5487
|
|
@@ -5693,7 +5510,6 @@ class VideoStream(FilterableStream):
|
|
5693
5510
|
]
|
5694
5511
|
| Default = Default("whiteonblack"),
|
5695
5512
|
extra_options: dict[str, Any] = None,
|
5696
|
-
**kwargs: Any,
|
5697
5513
|
) -> VideoStream:
|
5698
5514
|
"""
|
5699
5515
|
|
@@ -5729,8 +5545,7 @@ class VideoStream(FilterableStream):
|
|
5729
5545
|
"bgopacity": bgopacity,
|
5730
5546
|
"colors_mode": colors_mode,
|
5731
5547
|
}
|
5732
|
-
| (extra_options or {})
|
5733
|
-
| kwargs,
|
5548
|
+
| (extra_options or {}),
|
5734
5549
|
)
|
5735
5550
|
return filter_node.video(0)
|
5736
5551
|
|
@@ -5743,7 +5558,6 @@ class VideoStream(FilterableStream):
|
|
5743
5558
|
chroma_tmp: Double = Default(0.0),
|
5744
5559
|
enable: String = Default(None),
|
5745
5560
|
extra_options: dict[str, Any] = None,
|
5746
|
-
**kwargs: Any,
|
5747
5561
|
) -> VideoStream:
|
5748
5562
|
"""
|
5749
5563
|
|
@@ -5773,12 +5587,16 @@ class VideoStream(FilterableStream):
|
|
5773
5587
|
"chroma_tmp": chroma_tmp,
|
5774
5588
|
"enable": enable,
|
5775
5589
|
}
|
5776
|
-
| (extra_options or {})
|
5777
|
-
| kwargs,
|
5590
|
+
| (extra_options or {}),
|
5778
5591
|
)
|
5779
5592
|
return filter_node.video(0)
|
5780
5593
|
|
5781
|
-
def hqx(
|
5594
|
+
def hqx(
|
5595
|
+
self,
|
5596
|
+
*,
|
5597
|
+
n: Int = Default(3),
|
5598
|
+
extra_options: dict[str, Any] = None,
|
5599
|
+
) -> VideoStream:
|
5782
5600
|
"""
|
5783
5601
|
|
5784
5602
|
Scale the input by 2, 3 or 4 using the hq*x magnification algorithm.
|
@@ -5799,8 +5617,7 @@ class VideoStream(FilterableStream):
|
|
5799
5617
|
**{
|
5800
5618
|
"n": n,
|
5801
5619
|
}
|
5802
|
-
| (extra_options or {})
|
5803
|
-
| kwargs,
|
5620
|
+
| (extra_options or {}),
|
5804
5621
|
)
|
5805
5622
|
return filter_node.video(0)
|
5806
5623
|
|
@@ -5814,7 +5631,6 @@ class VideoStream(FilterableStream):
|
|
5814
5631
|
blend: Float = Default(0.0),
|
5815
5632
|
enable: String = Default(None),
|
5816
5633
|
extra_options: dict[str, Any] = None,
|
5817
|
-
**kwargs: Any,
|
5818
5634
|
) -> VideoStream:
|
5819
5635
|
"""
|
5820
5636
|
|
@@ -5846,8 +5662,7 @@ class VideoStream(FilterableStream):
|
|
5846
5662
|
"blend": blend,
|
5847
5663
|
"enable": enable,
|
5848
5664
|
}
|
5849
|
-
| (extra_options or {})
|
5850
|
-
| kwargs,
|
5665
|
+
| (extra_options or {}),
|
5851
5666
|
)
|
5852
5667
|
return filter_node.video(0)
|
5853
5668
|
|
@@ -5861,7 +5676,6 @@ class VideoStream(FilterableStream):
|
|
5861
5676
|
blend: Float = Default(0.0),
|
5862
5677
|
enable: String = Default(None),
|
5863
5678
|
extra_options: dict[str, Any] = None,
|
5864
|
-
**kwargs: Any,
|
5865
5679
|
) -> VideoStream:
|
5866
5680
|
"""
|
5867
5681
|
|
@@ -5893,8 +5707,7 @@ class VideoStream(FilterableStream):
|
|
5893
5707
|
"blend": blend,
|
5894
5708
|
"enable": enable,
|
5895
5709
|
}
|
5896
|
-
| (extra_options or {})
|
5897
|
-
| kwargs,
|
5710
|
+
| (extra_options or {}),
|
5898
5711
|
)
|
5899
5712
|
return filter_node.video(0)
|
5900
5713
|
|
@@ -5907,7 +5720,6 @@ class VideoStream(FilterableStream):
|
|
5907
5720
|
b: String = Default("0"),
|
5908
5721
|
enable: String = Default(None),
|
5909
5722
|
extra_options: dict[str, Any] = None,
|
5910
|
-
**kwargs: Any,
|
5911
5723
|
) -> VideoStream:
|
5912
5724
|
"""
|
5913
5725
|
|
@@ -5937,8 +5749,7 @@ class VideoStream(FilterableStream):
|
|
5937
5749
|
"b": b,
|
5938
5750
|
"enable": enable,
|
5939
5751
|
}
|
5940
|
-
| (extra_options or {})
|
5941
|
-
| kwargs,
|
5752
|
+
| (extra_options or {}),
|
5942
5753
|
)
|
5943
5754
|
return filter_node.video(0)
|
5944
5755
|
|
@@ -5956,7 +5767,6 @@ class VideoStream(FilterableStream):
|
|
5956
5767
|
lightness: Boolean = Default(False),
|
5957
5768
|
enable: String = Default(None),
|
5958
5769
|
extra_options: dict[str, Any] = None,
|
5959
|
-
**kwargs: Any,
|
5960
5770
|
) -> VideoStream:
|
5961
5771
|
"""
|
5962
5772
|
|
@@ -5996,12 +5806,14 @@ class VideoStream(FilterableStream):
|
|
5996
5806
|
"lightness": lightness,
|
5997
5807
|
"enable": enable,
|
5998
5808
|
}
|
5999
|
-
| (extra_options or {})
|
6000
|
-
| kwargs,
|
5809
|
+
| (extra_options or {}),
|
6001
5810
|
)
|
6002
5811
|
return filter_node.video(0)
|
6003
5812
|
|
6004
|
-
def hwdownload(
|
5813
|
+
def hwdownload(
|
5814
|
+
self,
|
5815
|
+
extra_options: dict[str, Any] = None,
|
5816
|
+
) -> VideoStream:
|
6005
5817
|
"""
|
6006
5818
|
|
6007
5819
|
Download a hardware frame to a normal frame
|
@@ -6016,7 +5828,7 @@ class VideoStream(FilterableStream):
|
|
6016
5828
|
filter_node = filter_node_factory(
|
6017
5829
|
FFMpegFilterDef(name="hwdownload", typings_input=("video",), typings_output=("video",)),
|
6018
5830
|
self,
|
6019
|
-
**{} | (extra_options or {})
|
5831
|
+
**{} | (extra_options or {}),
|
6020
5832
|
)
|
6021
5833
|
return filter_node.video(0)
|
6022
5834
|
|
@@ -6027,7 +5839,6 @@ class VideoStream(FilterableStream):
|
|
6027
5839
|
derive_device: String = Default(None),
|
6028
5840
|
reverse: Int = Default(0),
|
6029
5841
|
extra_options: dict[str, Any] = None,
|
6030
|
-
**kwargs: Any,
|
6031
5842
|
) -> VideoStream:
|
6032
5843
|
"""
|
6033
5844
|
|
@@ -6053,13 +5864,15 @@ class VideoStream(FilterableStream):
|
|
6053
5864
|
"derive_device": derive_device,
|
6054
5865
|
"reverse": reverse,
|
6055
5866
|
}
|
6056
|
-
| (extra_options or {})
|
6057
|
-
| kwargs,
|
5867
|
+
| (extra_options or {}),
|
6058
5868
|
)
|
6059
5869
|
return filter_node.video(0)
|
6060
5870
|
|
6061
5871
|
def hwupload(
|
6062
|
-
self,
|
5872
|
+
self,
|
5873
|
+
*,
|
5874
|
+
derive_device: String = Default(None),
|
5875
|
+
extra_options: dict[str, Any] = None,
|
6063
5876
|
) -> VideoStream:
|
6064
5877
|
"""
|
6065
5878
|
|
@@ -6081,8 +5894,7 @@ class VideoStream(FilterableStream):
|
|
6081
5894
|
**{
|
6082
5895
|
"derive_device": derive_device,
|
6083
5896
|
}
|
6084
|
-
| (extra_options or {})
|
6085
|
-
| kwargs,
|
5897
|
+
| (extra_options or {}),
|
6086
5898
|
)
|
6087
5899
|
return filter_node.video(0)
|
6088
5900
|
|
@@ -6098,7 +5910,6 @@ class VideoStream(FilterableStream):
|
|
6098
5910
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
6099
5911
|
enable: String = Default(None),
|
6100
5912
|
extra_options: dict[str, Any] = None,
|
6101
|
-
**kwargs: Any,
|
6102
5913
|
) -> VideoStream:
|
6103
5914
|
"""
|
6104
5915
|
|
@@ -6133,8 +5944,7 @@ class VideoStream(FilterableStream):
|
|
6133
5944
|
"ts_sync_mode": ts_sync_mode,
|
6134
5945
|
"enable": enable,
|
6135
5946
|
}
|
6136
|
-
| (extra_options or {})
|
6137
|
-
| kwargs,
|
5947
|
+
| (extra_options or {}),
|
6138
5948
|
)
|
6139
5949
|
return filter_node.video(0)
|
6140
5950
|
|
@@ -6148,7 +5958,6 @@ class VideoStream(FilterableStream):
|
|
6148
5958
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
6149
5959
|
enable: String = Default(None),
|
6150
5960
|
extra_options: dict[str, Any] = None,
|
6151
|
-
**kwargs: Any,
|
6152
5961
|
) -> VideoStream:
|
6153
5962
|
"""
|
6154
5963
|
|
@@ -6179,8 +5988,7 @@ class VideoStream(FilterableStream):
|
|
6179
5988
|
"ts_sync_mode": ts_sync_mode,
|
6180
5989
|
"enable": enable,
|
6181
5990
|
}
|
6182
|
-
| (extra_options or {})
|
6183
|
-
| kwargs,
|
5991
|
+
| (extra_options or {}),
|
6184
5992
|
)
|
6185
5993
|
return filter_node.video(0)
|
6186
5994
|
|
@@ -6193,7 +6001,6 @@ class VideoStream(FilterableStream):
|
|
6193
6001
|
half_life: Float = Default(0.0),
|
6194
6002
|
analyze_interlaced_flag: Int = Default(0),
|
6195
6003
|
extra_options: dict[str, Any] = None,
|
6196
|
-
**kwargs: Any,
|
6197
6004
|
) -> VideoStream:
|
6198
6005
|
"""
|
6199
6006
|
|
@@ -6223,8 +6030,7 @@ class VideoStream(FilterableStream):
|
|
6223
6030
|
"half_life": half_life,
|
6224
6031
|
"analyze_interlaced_flag": analyze_interlaced_flag,
|
6225
6032
|
}
|
6226
|
-
| (extra_options or {})
|
6227
|
-
| kwargs,
|
6033
|
+
| (extra_options or {}),
|
6228
6034
|
)
|
6229
6035
|
return filter_node.video(0)
|
6230
6036
|
|
@@ -6239,7 +6045,6 @@ class VideoStream(FilterableStream):
|
|
6239
6045
|
alpha_swap: Boolean = Default(False),
|
6240
6046
|
enable: String = Default(None),
|
6241
6047
|
extra_options: dict[str, Any] = None,
|
6242
|
-
**kwargs: Any,
|
6243
6048
|
) -> VideoStream:
|
6244
6049
|
"""
|
6245
6050
|
|
@@ -6273,8 +6078,7 @@ class VideoStream(FilterableStream):
|
|
6273
6078
|
"alpha_swap": alpha_swap,
|
6274
6079
|
"enable": enable,
|
6275
6080
|
}
|
6276
|
-
| (extra_options or {})
|
6277
|
-
| kwargs,
|
6081
|
+
| (extra_options or {}),
|
6278
6082
|
)
|
6279
6083
|
return filter_node.video(0)
|
6280
6084
|
|
@@ -6287,7 +6091,6 @@ class VideoStream(FilterableStream):
|
|
6287
6091
|
threshold3: Int = Default(65535),
|
6288
6092
|
enable: String = Default(None),
|
6289
6093
|
extra_options: dict[str, Any] = None,
|
6290
|
-
**kwargs: Any,
|
6291
6094
|
) -> VideoStream:
|
6292
6095
|
"""
|
6293
6096
|
|
@@ -6317,8 +6120,7 @@ class VideoStream(FilterableStream):
|
|
6317
6120
|
"threshold3": threshold3,
|
6318
6121
|
"enable": enable,
|
6319
6122
|
}
|
6320
|
-
| (extra_options or {})
|
6321
|
-
| kwargs,
|
6123
|
+
| (extra_options or {}),
|
6322
6124
|
)
|
6323
6125
|
return filter_node.video(0)
|
6324
6126
|
|
@@ -6328,7 +6130,6 @@ class VideoStream(FilterableStream):
|
|
6328
6130
|
scan: Int | Literal["tff", "bff"] | Default = Default("tff"),
|
6329
6131
|
lowpass: Int | Literal["off", "linear", "complex"] | Default = Default("linear"),
|
6330
6132
|
extra_options: dict[str, Any] = None,
|
6331
|
-
**kwargs: Any,
|
6332
6133
|
) -> VideoStream:
|
6333
6134
|
"""
|
6334
6135
|
|
@@ -6352,8 +6153,7 @@ class VideoStream(FilterableStream):
|
|
6352
6153
|
"scan": scan,
|
6353
6154
|
"lowpass": lowpass,
|
6354
6155
|
}
|
6355
|
-
| (extra_options or {})
|
6356
|
-
| kwargs,
|
6156
|
+
| (extra_options or {}),
|
6357
6157
|
)
|
6358
6158
|
return filter_node.video(0)
|
6359
6159
|
|
@@ -6366,7 +6166,6 @@ class VideoStream(FilterableStream):
|
|
6366
6166
|
sharp: Boolean = Default(False),
|
6367
6167
|
twoway: Boolean = Default(False),
|
6368
6168
|
extra_options: dict[str, Any] = None,
|
6369
|
-
**kwargs: Any,
|
6370
6169
|
) -> VideoStream:
|
6371
6170
|
"""
|
6372
6171
|
|
@@ -6396,8 +6195,7 @@ class VideoStream(FilterableStream):
|
|
6396
6195
|
"sharp": sharp,
|
6397
6196
|
"twoway": twoway,
|
6398
6197
|
}
|
6399
|
-
| (extra_options or {})
|
6400
|
-
| kwargs,
|
6198
|
+
| (extra_options or {}),
|
6401
6199
|
)
|
6402
6200
|
return filter_node.video(0)
|
6403
6201
|
|
@@ -6409,7 +6207,6 @@ class VideoStream(FilterableStream):
|
|
6409
6207
|
delta: Float = Default(0.0),
|
6410
6208
|
enable: String = Default(None),
|
6411
6209
|
extra_options: dict[str, Any] = None,
|
6412
|
-
**kwargs: Any,
|
6413
6210
|
) -> VideoStream:
|
6414
6211
|
"""
|
6415
6212
|
|
@@ -6437,8 +6234,7 @@ class VideoStream(FilterableStream):
|
|
6437
6234
|
"delta": delta,
|
6438
6235
|
"enable": enable,
|
6439
6236
|
}
|
6440
|
-
| (extra_options or {})
|
6441
|
-
| kwargs,
|
6237
|
+
| (extra_options or {}),
|
6442
6238
|
)
|
6443
6239
|
return filter_node.video(0)
|
6444
6240
|
|
@@ -6449,7 +6245,6 @@ class VideoStream(FilterableStream):
|
|
6449
6245
|
planes: Flags = Default("F"),
|
6450
6246
|
enable: String = Default(None),
|
6451
6247
|
extra_options: dict[str, Any] = None,
|
6452
|
-
**kwargs: Any,
|
6453
6248
|
) -> VideoStream:
|
6454
6249
|
"""
|
6455
6250
|
|
@@ -6475,13 +6270,15 @@ class VideoStream(FilterableStream):
|
|
6475
6270
|
"planes": planes,
|
6476
6271
|
"enable": enable,
|
6477
6272
|
}
|
6478
|
-
| (extra_options or {})
|
6479
|
-
| kwargs,
|
6273
|
+
| (extra_options or {}),
|
6480
6274
|
)
|
6481
6275
|
return filter_node.video(0)
|
6482
6276
|
|
6483
6277
|
def latency(
|
6484
|
-
self,
|
6278
|
+
self,
|
6279
|
+
*,
|
6280
|
+
enable: String = Default(None),
|
6281
|
+
extra_options: dict[str, Any] = None,
|
6485
6282
|
) -> VideoStream:
|
6486
6283
|
"""
|
6487
6284
|
|
@@ -6503,8 +6300,7 @@ class VideoStream(FilterableStream):
|
|
6503
6300
|
**{
|
6504
6301
|
"enable": enable,
|
6505
6302
|
}
|
6506
|
-
| (extra_options or {})
|
6507
|
-
| kwargs,
|
6303
|
+
| (extra_options or {}),
|
6508
6304
|
)
|
6509
6305
|
return filter_node.video(0)
|
6510
6306
|
|
@@ -6519,7 +6315,6 @@ class VideoStream(FilterableStream):
|
|
6519
6315
|
fc: Color = Default("black@0"),
|
6520
6316
|
enable: String = Default(None),
|
6521
6317
|
extra_options: dict[str, Any] = None,
|
6522
|
-
**kwargs: Any,
|
6523
6318
|
) -> VideoStream:
|
6524
6319
|
"""
|
6525
6320
|
|
@@ -6553,8 +6348,7 @@ class VideoStream(FilterableStream):
|
|
6553
6348
|
"fc": fc,
|
6554
6349
|
"enable": enable,
|
6555
6350
|
}
|
6556
|
-
| (extra_options or {})
|
6557
|
-
| kwargs,
|
6351
|
+
| (extra_options or {}),
|
6558
6352
|
)
|
6559
6353
|
return filter_node.video(0)
|
6560
6354
|
|
@@ -6574,7 +6368,6 @@ class VideoStream(FilterableStream):
|
|
6574
6368
|
repeatlast: Boolean = Default(True),
|
6575
6369
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
6576
6370
|
extra_options: dict[str, Any] = None,
|
6577
|
-
**kwargs: Any,
|
6578
6371
|
) -> VideoStream:
|
6579
6372
|
"""
|
6580
6373
|
|
@@ -6617,8 +6410,7 @@ class VideoStream(FilterableStream):
|
|
6617
6410
|
"repeatlast": repeatlast,
|
6618
6411
|
"ts_sync_mode": ts_sync_mode,
|
6619
6412
|
}
|
6620
|
-
| (extra_options or {})
|
6621
|
-
| kwargs,
|
6413
|
+
| (extra_options or {}),
|
6622
6414
|
)
|
6623
6415
|
return filter_node.video(0)
|
6624
6416
|
|
@@ -6630,7 +6422,6 @@ class VideoStream(FilterableStream):
|
|
6630
6422
|
planes: Int = Default(15),
|
6631
6423
|
enable: String = Default(None),
|
6632
6424
|
extra_options: dict[str, Any] = None,
|
6633
|
-
**kwargs: Any,
|
6634
6425
|
) -> VideoStream:
|
6635
6426
|
"""
|
6636
6427
|
|
@@ -6658,8 +6449,7 @@ class VideoStream(FilterableStream):
|
|
6658
6449
|
"planes": planes,
|
6659
6450
|
"enable": enable,
|
6660
6451
|
}
|
6661
|
-
| (extra_options or {})
|
6662
|
-
| kwargs,
|
6452
|
+
| (extra_options or {}),
|
6663
6453
|
)
|
6664
6454
|
return filter_node.video(0)
|
6665
6455
|
|
@@ -6671,7 +6461,6 @@ class VideoStream(FilterableStream):
|
|
6671
6461
|
start: Int64 = Default(0),
|
6672
6462
|
time: Duration = Default("INT64_MAX"),
|
6673
6463
|
extra_options: dict[str, Any] = None,
|
6674
|
-
**kwargs: Any,
|
6675
6464
|
) -> VideoStream:
|
6676
6465
|
"""
|
6677
6466
|
|
@@ -6699,8 +6488,7 @@ class VideoStream(FilterableStream):
|
|
6699
6488
|
"start": start,
|
6700
6489
|
"time": time,
|
6701
6490
|
}
|
6702
|
-
| (extra_options or {})
|
6703
|
-
| kwargs,
|
6491
|
+
| (extra_options or {}),
|
6704
6492
|
)
|
6705
6493
|
return filter_node.video(0)
|
6706
6494
|
|
@@ -6712,7 +6500,6 @@ class VideoStream(FilterableStream):
|
|
6712
6500
|
softness: Double = Default(0.0),
|
6713
6501
|
enable: String = Default(None),
|
6714
6502
|
extra_options: dict[str, Any] = None,
|
6715
|
-
**kwargs: Any,
|
6716
6503
|
) -> VideoStream:
|
6717
6504
|
"""
|
6718
6505
|
|
@@ -6740,8 +6527,7 @@ class VideoStream(FilterableStream):
|
|
6740
6527
|
"softness": softness,
|
6741
6528
|
"enable": enable,
|
6742
6529
|
}
|
6743
|
-
| (extra_options or {})
|
6744
|
-
| kwargs,
|
6530
|
+
| (extra_options or {}),
|
6745
6531
|
)
|
6746
6532
|
return filter_node.video(0)
|
6747
6533
|
|
@@ -6761,7 +6547,6 @@ class VideoStream(FilterableStream):
|
|
6761
6547
|
a: String = Default("clipval"),
|
6762
6548
|
enable: String = Default(None),
|
6763
6549
|
extra_options: dict[str, Any] = None,
|
6764
|
-
**kwargs: Any,
|
6765
6550
|
) -> VideoStream:
|
6766
6551
|
"""
|
6767
6552
|
|
@@ -6805,8 +6590,7 @@ class VideoStream(FilterableStream):
|
|
6805
6590
|
"a": a,
|
6806
6591
|
"enable": enable,
|
6807
6592
|
}
|
6808
|
-
| (extra_options or {})
|
6809
|
-
| kwargs,
|
6593
|
+
| (extra_options or {}),
|
6810
6594
|
)
|
6811
6595
|
return filter_node.video(0)
|
6812
6596
|
|
@@ -6817,7 +6601,6 @@ class VideoStream(FilterableStream):
|
|
6817
6601
|
interp: Int | Literal["nearest", "linear", "cosine", "cubic", "spline"] | Default = Default("linear"),
|
6818
6602
|
enable: String = Default(None),
|
6819
6603
|
extra_options: dict[str, Any] = None,
|
6820
|
-
**kwargs: Any,
|
6821
6604
|
) -> VideoStream:
|
6822
6605
|
"""
|
6823
6606
|
|
@@ -6843,8 +6626,7 @@ class VideoStream(FilterableStream):
|
|
6843
6626
|
"interp": interp,
|
6844
6627
|
"enable": enable,
|
6845
6628
|
}
|
6846
|
-
| (extra_options or {})
|
6847
|
-
| kwargs,
|
6629
|
+
| (extra_options or {}),
|
6848
6630
|
)
|
6849
6631
|
return filter_node.video(0)
|
6850
6632
|
|
@@ -6863,7 +6645,6 @@ class VideoStream(FilterableStream):
|
|
6863
6645
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
6864
6646
|
enable: String = Default(None),
|
6865
6647
|
extra_options: dict[str, Any] = None,
|
6866
|
-
**kwargs: Any,
|
6867
6648
|
) -> VideoStream:
|
6868
6649
|
"""
|
6869
6650
|
|
@@ -6904,8 +6685,7 @@ class VideoStream(FilterableStream):
|
|
6904
6685
|
"ts_sync_mode": ts_sync_mode,
|
6905
6686
|
"enable": enable,
|
6906
6687
|
}
|
6907
|
-
| (extra_options or {})
|
6908
|
-
| kwargs,
|
6688
|
+
| (extra_options or {}),
|
6909
6689
|
)
|
6910
6690
|
return filter_node.video(0)
|
6911
6691
|
|
@@ -6919,7 +6699,6 @@ class VideoStream(FilterableStream):
|
|
6919
6699
|
| Default = Default("tetrahedral"),
|
6920
6700
|
enable: String = Default(None),
|
6921
6701
|
extra_options: dict[str, Any] = None,
|
6922
|
-
**kwargs: Any,
|
6923
6702
|
) -> VideoStream:
|
6924
6703
|
"""
|
6925
6704
|
|
@@ -6947,8 +6726,7 @@ class VideoStream(FilterableStream):
|
|
6947
6726
|
"interp": interp,
|
6948
6727
|
"enable": enable,
|
6949
6728
|
}
|
6950
|
-
| (extra_options or {})
|
6951
|
-
| kwargs,
|
6729
|
+
| (extra_options or {}),
|
6952
6730
|
)
|
6953
6731
|
return filter_node.video(0)
|
6954
6732
|
|
@@ -6968,7 +6746,6 @@ class VideoStream(FilterableStream):
|
|
6968
6746
|
a: String = Default("clipval"),
|
6969
6747
|
enable: String = Default(None),
|
6970
6748
|
extra_options: dict[str, Any] = None,
|
6971
|
-
**kwargs: Any,
|
6972
6749
|
) -> VideoStream:
|
6973
6750
|
"""
|
6974
6751
|
|
@@ -7012,8 +6789,7 @@ class VideoStream(FilterableStream):
|
|
7012
6789
|
"a": a,
|
7013
6790
|
"enable": enable,
|
7014
6791
|
}
|
7015
|
-
| (extra_options or {})
|
7016
|
-
| kwargs,
|
6792
|
+
| (extra_options or {}),
|
7017
6793
|
)
|
7018
6794
|
return filter_node.video(0)
|
7019
6795
|
|
@@ -7033,7 +6809,6 @@ class VideoStream(FilterableStream):
|
|
7033
6809
|
a: String = Default("clipval"),
|
7034
6810
|
enable: String = Default(None),
|
7035
6811
|
extra_options: dict[str, Any] = None,
|
7036
|
-
**kwargs: Any,
|
7037
6812
|
) -> VideoStream:
|
7038
6813
|
"""
|
7039
6814
|
|
@@ -7077,8 +6852,7 @@ class VideoStream(FilterableStream):
|
|
7077
6852
|
"a": a,
|
7078
6853
|
"enable": enable,
|
7079
6854
|
}
|
7080
|
-
| (extra_options or {})
|
7081
|
-
| kwargs,
|
6855
|
+
| (extra_options or {}),
|
7082
6856
|
)
|
7083
6857
|
return filter_node.video(0)
|
7084
6858
|
|
@@ -7092,7 +6866,6 @@ class VideoStream(FilterableStream):
|
|
7092
6866
|
planes: Int = Default(15),
|
7093
6867
|
enable: String = Default(None),
|
7094
6868
|
extra_options: dict[str, Any] = None,
|
7095
|
-
**kwargs: Any,
|
7096
6869
|
) -> VideoStream:
|
7097
6870
|
"""
|
7098
6871
|
|
@@ -7122,8 +6895,7 @@ class VideoStream(FilterableStream):
|
|
7122
6895
|
"planes": planes,
|
7123
6896
|
"enable": enable,
|
7124
6897
|
}
|
7125
|
-
| (extra_options or {})
|
7126
|
-
| kwargs,
|
6898
|
+
| (extra_options or {}),
|
7127
6899
|
)
|
7128
6900
|
return filter_node.video(0)
|
7129
6901
|
|
@@ -7135,7 +6907,6 @@ class VideoStream(FilterableStream):
|
|
7135
6907
|
planes: Int = Default(15),
|
7136
6908
|
enable: String = Default(None),
|
7137
6909
|
extra_options: dict[str, Any] = None,
|
7138
|
-
**kwargs: Any,
|
7139
6910
|
) -> VideoStream:
|
7140
6911
|
"""
|
7141
6912
|
|
@@ -7161,8 +6932,7 @@ class VideoStream(FilterableStream):
|
|
7161
6932
|
"planes": planes,
|
7162
6933
|
"enable": enable,
|
7163
6934
|
}
|
7164
|
-
| (extra_options or {})
|
7165
|
-
| kwargs,
|
6935
|
+
| (extra_options or {}),
|
7166
6936
|
)
|
7167
6937
|
return filter_node.video(0)
|
7168
6938
|
|
@@ -7174,7 +6944,6 @@ class VideoStream(FilterableStream):
|
|
7174
6944
|
planes: Int = Default(15),
|
7175
6945
|
enable: String = Default(None),
|
7176
6946
|
extra_options: dict[str, Any] = None,
|
7177
|
-
**kwargs: Any,
|
7178
6947
|
) -> VideoStream:
|
7179
6948
|
"""
|
7180
6949
|
|
@@ -7200,8 +6969,7 @@ class VideoStream(FilterableStream):
|
|
7200
6969
|
"planes": planes,
|
7201
6970
|
"enable": enable,
|
7202
6971
|
}
|
7203
|
-
| (extra_options or {})
|
7204
|
-
| kwargs,
|
6972
|
+
| (extra_options or {}),
|
7205
6973
|
)
|
7206
6974
|
return filter_node.video(0)
|
7207
6975
|
|
@@ -7213,7 +6981,6 @@ class VideoStream(FilterableStream):
|
|
7213
6981
|
planes: Int = Default(15),
|
7214
6982
|
enable: String = Default(None),
|
7215
6983
|
extra_options: dict[str, Any] = None,
|
7216
|
-
**kwargs: Any,
|
7217
6984
|
) -> VideoStream:
|
7218
6985
|
"""
|
7219
6986
|
|
@@ -7239,8 +7006,7 @@ class VideoStream(FilterableStream):
|
|
7239
7006
|
"planes": planes,
|
7240
7007
|
"enable": enable,
|
7241
7008
|
}
|
7242
|
-
| (extra_options or {})
|
7243
|
-
| kwargs,
|
7009
|
+
| (extra_options or {}),
|
7244
7010
|
)
|
7245
7011
|
return filter_node.video(0)
|
7246
7012
|
|
@@ -7253,7 +7019,6 @@ class VideoStream(FilterableStream):
|
|
7253
7019
|
mode: Int | Literal["abs", "diff"] | Default = Default("abs"),
|
7254
7020
|
enable: String = Default(None),
|
7255
7021
|
extra_options: dict[str, Any] = None,
|
7256
|
-
**kwargs: Any,
|
7257
7022
|
) -> VideoStream:
|
7258
7023
|
"""
|
7259
7024
|
|
@@ -7282,8 +7047,7 @@ class VideoStream(FilterableStream):
|
|
7282
7047
|
"mode": mode,
|
7283
7048
|
"enable": enable,
|
7284
7049
|
}
|
7285
|
-
| (extra_options or {})
|
7286
|
-
| kwargs,
|
7050
|
+
| (extra_options or {}),
|
7287
7051
|
)
|
7288
7052
|
return filter_node.video(0)
|
7289
7053
|
|
@@ -7297,7 +7061,6 @@ class VideoStream(FilterableStream):
|
|
7297
7061
|
sum: Int = Default(10),
|
7298
7062
|
enable: String = Default(None),
|
7299
7063
|
extra_options: dict[str, Any] = None,
|
7300
|
-
**kwargs: Any,
|
7301
7064
|
) -> VideoStream:
|
7302
7065
|
"""
|
7303
7066
|
|
@@ -7329,8 +7092,7 @@ class VideoStream(FilterableStream):
|
|
7329
7092
|
"sum": sum,
|
7330
7093
|
"enable": enable,
|
7331
7094
|
}
|
7332
|
-
| (extra_options or {})
|
7333
|
-
| kwargs,
|
7095
|
+
| (extra_options or {}),
|
7334
7096
|
)
|
7335
7097
|
return filter_node.video(0)
|
7336
7098
|
|
@@ -7341,7 +7103,6 @@ class VideoStream(FilterableStream):
|
|
7341
7103
|
parity: Int | Literal["tff", "bff"] | Default = Default("bff"),
|
7342
7104
|
qp: Int = Default(1),
|
7343
7105
|
extra_options: dict[str, Any] = None,
|
7344
|
-
**kwargs: Any,
|
7345
7106
|
) -> VideoStream:
|
7346
7107
|
"""
|
7347
7108
|
|
@@ -7367,8 +7128,7 @@ class VideoStream(FilterableStream):
|
|
7367
7128
|
"parity": parity,
|
7368
7129
|
"qp": qp,
|
7369
7130
|
}
|
7370
|
-
| (extra_options or {})
|
7371
|
-
| kwargs,
|
7131
|
+
| (extra_options or {}),
|
7372
7132
|
)
|
7373
7133
|
return filter_node.video(0)
|
7374
7134
|
|
@@ -7381,7 +7141,6 @@ class VideoStream(FilterableStream):
|
|
7381
7141
|
percentile: Float = Default(0.5),
|
7382
7142
|
enable: String = Default(None),
|
7383
7143
|
extra_options: dict[str, Any] = None,
|
7384
|
-
**kwargs: Any,
|
7385
7144
|
) -> VideoStream:
|
7386
7145
|
"""
|
7387
7146
|
|
@@ -7411,8 +7170,7 @@ class VideoStream(FilterableStream):
|
|
7411
7170
|
"percentile": percentile,
|
7412
7171
|
"enable": enable,
|
7413
7172
|
}
|
7414
|
-
| (extra_options or {})
|
7415
|
-
| kwargs,
|
7173
|
+
| (extra_options or {}),
|
7416
7174
|
)
|
7417
7175
|
return filter_node.video(0)
|
7418
7176
|
|
@@ -7425,7 +7183,6 @@ class VideoStream(FilterableStream):
|
|
7425
7183
|
mb_size: Int = Default(16),
|
7426
7184
|
search_param: Int = Default(7),
|
7427
7185
|
extra_options: dict[str, Any] = None,
|
7428
|
-
**kwargs: Any,
|
7429
7186
|
) -> VideoStream:
|
7430
7187
|
"""
|
7431
7188
|
|
@@ -7451,8 +7208,7 @@ class VideoStream(FilterableStream):
|
|
7451
7208
|
"mb_size": mb_size,
|
7452
7209
|
"search_param": search_param,
|
7453
7210
|
}
|
7454
|
-
| (extra_options or {})
|
7455
|
-
| kwargs,
|
7211
|
+
| (extra_options or {}),
|
7456
7212
|
)
|
7457
7213
|
return filter_node.video(0)
|
7458
7214
|
|
@@ -7470,7 +7226,6 @@ class VideoStream(FilterableStream):
|
|
7470
7226
|
direct: Boolean = Default(False),
|
7471
7227
|
enable: String = Default(None),
|
7472
7228
|
extra_options: dict[str, Any] = None,
|
7473
|
-
**kwargs: Any,
|
7474
7229
|
) -> VideoStream:
|
7475
7230
|
"""
|
7476
7231
|
|
@@ -7506,8 +7261,7 @@ class VideoStream(FilterableStream):
|
|
7506
7261
|
"direct": direct,
|
7507
7262
|
"enable": enable,
|
7508
7263
|
}
|
7509
|
-
| (extra_options or {})
|
7510
|
-
| kwargs,
|
7264
|
+
| (extra_options or {}),
|
7511
7265
|
)
|
7512
7266
|
return filter_node.video(0)
|
7513
7267
|
|
@@ -7518,7 +7272,6 @@ class VideoStream(FilterableStream):
|
|
7518
7272
|
planes: Int = Default(15),
|
7519
7273
|
enable: String = Default(None),
|
7520
7274
|
extra_options: dict[str, Any] = None,
|
7521
|
-
**kwargs: Any,
|
7522
7275
|
) -> VideoStream:
|
7523
7276
|
"""
|
7524
7277
|
|
@@ -7543,8 +7296,7 @@ class VideoStream(FilterableStream):
|
|
7543
7296
|
"planes": planes,
|
7544
7297
|
"enable": enable,
|
7545
7298
|
}
|
7546
|
-
| (extra_options or {})
|
7547
|
-
| kwargs,
|
7299
|
+
| (extra_options or {}),
|
7548
7300
|
)
|
7549
7301
|
return filter_node.video(0)
|
7550
7302
|
|
@@ -7564,7 +7316,6 @@ class VideoStream(FilterableStream):
|
|
7564
7316
|
scd: Int | Literal["none", "fdiff"] | Default = Default("fdiff"),
|
7565
7317
|
scd_threshold: Double = Default(10.0),
|
7566
7318
|
extra_options: dict[str, Any] = None,
|
7567
|
-
**kwargs: Any,
|
7568
7319
|
) -> VideoStream:
|
7569
7320
|
"""
|
7570
7321
|
|
@@ -7604,8 +7355,7 @@ class VideoStream(FilterableStream):
|
|
7604
7355
|
"scd": scd,
|
7605
7356
|
"scd_threshold": scd_threshold,
|
7606
7357
|
}
|
7607
|
-
| (extra_options or {})
|
7608
|
-
| kwargs,
|
7358
|
+
| (extra_options or {}),
|
7609
7359
|
)
|
7610
7360
|
return filter_node.video(0)
|
7611
7361
|
|
@@ -7618,7 +7368,6 @@ class VideoStream(FilterableStream):
|
|
7618
7368
|
high: Float = Default(0.0),
|
7619
7369
|
enable: String = Default(None),
|
7620
7370
|
extra_options: dict[str, Any] = None,
|
7621
|
-
**kwargs: Any,
|
7622
7371
|
) -> VideoStream:
|
7623
7372
|
"""
|
7624
7373
|
|
@@ -7648,8 +7397,7 @@ class VideoStream(FilterableStream):
|
|
7648
7397
|
"high": high,
|
7649
7398
|
"enable": enable,
|
7650
7399
|
}
|
7651
|
-
| (extra_options or {})
|
7652
|
-
| kwargs,
|
7400
|
+
| (extra_options or {}),
|
7653
7401
|
)
|
7654
7402
|
return filter_node.video(0)
|
7655
7403
|
|
@@ -7668,7 +7416,6 @@ class VideoStream(FilterableStream):
|
|
7668
7416
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
7669
7417
|
enable: String = Default(None),
|
7670
7418
|
extra_options: dict[str, Any] = None,
|
7671
|
-
**kwargs: Any,
|
7672
7419
|
) -> VideoStream:
|
7673
7420
|
"""
|
7674
7421
|
|
@@ -7705,8 +7452,7 @@ class VideoStream(FilterableStream):
|
|
7705
7452
|
"ts_sync_mode": ts_sync_mode,
|
7706
7453
|
"enable": enable,
|
7707
7454
|
}
|
7708
|
-
| (extra_options or {})
|
7709
|
-
| kwargs,
|
7455
|
+
| (extra_options or {}),
|
7710
7456
|
)
|
7711
7457
|
return filter_node.video(0)
|
7712
7458
|
|
@@ -7719,7 +7465,6 @@ class VideoStream(FilterableStream):
|
|
7719
7465
|
lo: Int = Default(320),
|
7720
7466
|
frac: Float = Default(0.33),
|
7721
7467
|
extra_options: dict[str, Any] = None,
|
7722
|
-
**kwargs: Any,
|
7723
7468
|
) -> VideoStream:
|
7724
7469
|
"""
|
7725
7470
|
|
@@ -7749,8 +7494,7 @@ class VideoStream(FilterableStream):
|
|
7749
7494
|
"lo": lo,
|
7750
7495
|
"frac": frac,
|
7751
7496
|
}
|
7752
|
-
| (extra_options or {})
|
7753
|
-
| kwargs,
|
7497
|
+
| (extra_options or {}),
|
7754
7498
|
)
|
7755
7499
|
return filter_node.video(0)
|
7756
7500
|
|
@@ -7764,7 +7508,6 @@ class VideoStream(FilterableStream):
|
|
7764
7508
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
7765
7509
|
enable: String = Default(None),
|
7766
7510
|
extra_options: dict[str, Any] = None,
|
7767
|
-
**kwargs: Any,
|
7768
7511
|
) -> VideoStream:
|
7769
7512
|
"""
|
7770
7513
|
|
@@ -7795,8 +7538,7 @@ class VideoStream(FilterableStream):
|
|
7795
7538
|
"ts_sync_mode": ts_sync_mode,
|
7796
7539
|
"enable": enable,
|
7797
7540
|
}
|
7798
|
-
| (extra_options or {})
|
7799
|
-
| kwargs,
|
7541
|
+
| (extra_options or {}),
|
7800
7542
|
)
|
7801
7543
|
return filter_node.video(0)
|
7802
7544
|
|
@@ -7809,7 +7551,6 @@ class VideoStream(FilterableStream):
|
|
7809
7551
|
planes: Flags = Default("F"),
|
7810
7552
|
enable: String = Default(None),
|
7811
7553
|
extra_options: dict[str, Any] = None,
|
7812
|
-
**kwargs: Any,
|
7813
7554
|
) -> VideoStream:
|
7814
7555
|
"""
|
7815
7556
|
|
@@ -7838,8 +7579,7 @@ class VideoStream(FilterableStream):
|
|
7838
7579
|
"planes": planes,
|
7839
7580
|
"enable": enable,
|
7840
7581
|
}
|
7841
|
-
| (extra_options or {})
|
7842
|
-
| kwargs,
|
7582
|
+
| (extra_options or {}),
|
7843
7583
|
)
|
7844
7584
|
return filter_node.video(0)
|
7845
7585
|
|
@@ -7850,7 +7590,6 @@ class VideoStream(FilterableStream):
|
|
7850
7590
|
negate_alpha: Boolean = Default(False),
|
7851
7591
|
enable: String = Default(None),
|
7852
7592
|
extra_options: dict[str, Any] = None,
|
7853
|
-
**kwargs: Any,
|
7854
7593
|
) -> VideoStream:
|
7855
7594
|
"""
|
7856
7595
|
|
@@ -7876,8 +7615,7 @@ class VideoStream(FilterableStream):
|
|
7876
7615
|
"negate_alpha": negate_alpha,
|
7877
7616
|
"enable": enable,
|
7878
7617
|
}
|
7879
|
-
| (extra_options or {})
|
7880
|
-
| kwargs,
|
7618
|
+
| (extra_options or {}),
|
7881
7619
|
)
|
7882
7620
|
return filter_node.video(0)
|
7883
7621
|
|
@@ -7891,7 +7629,6 @@ class VideoStream(FilterableStream):
|
|
7891
7629
|
rc: Int = Default(0),
|
7892
7630
|
enable: String = Default(None),
|
7893
7631
|
extra_options: dict[str, Any] = None,
|
7894
|
-
**kwargs: Any,
|
7895
7632
|
) -> VideoStream:
|
7896
7633
|
"""
|
7897
7634
|
|
@@ -7923,8 +7660,7 @@ class VideoStream(FilterableStream):
|
|
7923
7660
|
"rc": rc,
|
7924
7661
|
"enable": enable,
|
7925
7662
|
}
|
7926
|
-
| (extra_options or {})
|
7927
|
-
| kwargs,
|
7663
|
+
| (extra_options or {}),
|
7928
7664
|
)
|
7929
7665
|
return filter_node.video(0)
|
7930
7666
|
|
@@ -7942,7 +7678,6 @@ class VideoStream(FilterableStream):
|
|
7942
7678
|
pscrn: Int | Literal["none", "original", "new", "new2", "new3"] | Default = Default("new"),
|
7943
7679
|
enable: String = Default(None),
|
7944
7680
|
extra_options: dict[str, Any] = None,
|
7945
|
-
**kwargs: Any,
|
7946
7681
|
) -> VideoStream:
|
7947
7682
|
"""
|
7948
7683
|
|
@@ -7982,13 +7717,15 @@ class VideoStream(FilterableStream):
|
|
7982
7717
|
"pscrn": pscrn,
|
7983
7718
|
"enable": enable,
|
7984
7719
|
}
|
7985
|
-
| (extra_options or {})
|
7986
|
-
| kwargs,
|
7720
|
+
| (extra_options or {}),
|
7987
7721
|
)
|
7988
7722
|
return filter_node.video(0)
|
7989
7723
|
|
7990
7724
|
def noformat(
|
7991
|
-
self,
|
7725
|
+
self,
|
7726
|
+
*,
|
7727
|
+
pix_fmts: String = Default(None),
|
7728
|
+
extra_options: dict[str, Any] = None,
|
7992
7729
|
) -> VideoStream:
|
7993
7730
|
"""
|
7994
7731
|
|
@@ -8010,8 +7747,7 @@ class VideoStream(FilterableStream):
|
|
8010
7747
|
**{
|
8011
7748
|
"pix_fmts": pix_fmts,
|
8012
7749
|
}
|
8013
|
-
| (extra_options or {})
|
8014
|
-
| kwargs,
|
7750
|
+
| (extra_options or {}),
|
8015
7751
|
)
|
8016
7752
|
return filter_node.video(0)
|
8017
7753
|
|
@@ -8035,7 +7771,6 @@ class VideoStream(FilterableStream):
|
|
8035
7771
|
c3_flags: Flags | Literal["a", "p", "t", "u"] | Default = Default("0"),
|
8036
7772
|
enable: String = Default(None),
|
8037
7773
|
extra_options: dict[str, Any] = None,
|
8038
|
-
**kwargs: Any,
|
8039
7774
|
) -> VideoStream:
|
8040
7775
|
"""
|
8041
7776
|
|
@@ -8087,8 +7822,7 @@ class VideoStream(FilterableStream):
|
|
8087
7822
|
"c3_flags": c3_flags,
|
8088
7823
|
"enable": enable,
|
8089
7824
|
}
|
8090
|
-
| (extra_options or {})
|
8091
|
-
| kwargs,
|
7825
|
+
| (extra_options or {}),
|
8092
7826
|
)
|
8093
7827
|
return filter_node.video(0)
|
8094
7828
|
|
@@ -8102,7 +7836,6 @@ class VideoStream(FilterableStream):
|
|
8102
7836
|
strength: Float = Default(1.0),
|
8103
7837
|
enable: String = Default(None),
|
8104
7838
|
extra_options: dict[str, Any] = None,
|
8105
|
-
**kwargs: Any,
|
8106
7839
|
) -> VideoStream:
|
8107
7840
|
"""
|
8108
7841
|
|
@@ -8134,12 +7867,14 @@ class VideoStream(FilterableStream):
|
|
8134
7867
|
"strength": strength,
|
8135
7868
|
"enable": enable,
|
8136
7869
|
}
|
8137
|
-
| (extra_options or {})
|
8138
|
-
| kwargs,
|
7870
|
+
| (extra_options or {}),
|
8139
7871
|
)
|
8140
7872
|
return filter_node.video(0)
|
8141
7873
|
|
8142
|
-
def null(
|
7874
|
+
def null(
|
7875
|
+
self,
|
7876
|
+
extra_options: dict[str, Any] = None,
|
7877
|
+
) -> VideoStream:
|
8143
7878
|
"""
|
8144
7879
|
|
8145
7880
|
Pass the source unchanged to the output.
|
@@ -8154,7 +7889,7 @@ class VideoStream(FilterableStream):
|
|
8154
7889
|
filter_node = filter_node_factory(
|
8155
7890
|
FFMpegFilterDef(name="null", typings_input=("video",), typings_output=("video",)),
|
8156
7891
|
self,
|
8157
|
-
**{} | (extra_options or {})
|
7892
|
+
**{} | (extra_options or {}),
|
8158
7893
|
)
|
8159
7894
|
return filter_node.video(0)
|
8160
7895
|
|
@@ -8166,7 +7901,6 @@ class VideoStream(FilterableStream):
|
|
8166
7901
|
whitelist: String = Default("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.:;,-+_!?\"'[]{}("),
|
8167
7902
|
blacklist: String = Default(""),
|
8168
7903
|
extra_options: dict[str, Any] = None,
|
8169
|
-
**kwargs: Any,
|
8170
7904
|
) -> VideoStream:
|
8171
7905
|
"""
|
8172
7906
|
|
@@ -8194,8 +7928,7 @@ class VideoStream(FilterableStream):
|
|
8194
7928
|
"whitelist": whitelist,
|
8195
7929
|
"blacklist": blacklist,
|
8196
7930
|
}
|
8197
|
-
| (extra_options or {})
|
8198
|
-
| kwargs,
|
7931
|
+
| (extra_options or {}),
|
8199
7932
|
)
|
8200
7933
|
return filter_node.video(0)
|
8201
7934
|
|
@@ -8217,7 +7950,6 @@ class VideoStream(FilterableStream):
|
|
8217
7950
|
sc: Boolean = Default(True),
|
8218
7951
|
enable: String = Default(None),
|
8219
7952
|
extra_options: dict[str, Any] = None,
|
8220
|
-
**kwargs: Any,
|
8221
7953
|
) -> VideoStream:
|
8222
7954
|
"""
|
8223
7955
|
|
@@ -8265,8 +7997,7 @@ class VideoStream(FilterableStream):
|
|
8265
7997
|
"sc": sc,
|
8266
7998
|
"enable": enable,
|
8267
7999
|
}
|
8268
|
-
| (extra_options or {})
|
8269
|
-
| kwargs,
|
8000
|
+
| (extra_options or {}),
|
8270
8001
|
)
|
8271
8002
|
return filter_node.video(0)
|
8272
8003
|
|
@@ -8287,7 +8018,6 @@ class VideoStream(FilterableStream):
|
|
8287
8018
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
8288
8019
|
enable: String = Default(None),
|
8289
8020
|
extra_options: dict[str, Any] = None,
|
8290
|
-
**kwargs: Any,
|
8291
8021
|
) -> VideoStream:
|
8292
8022
|
"""
|
8293
8023
|
|
@@ -8328,8 +8058,7 @@ class VideoStream(FilterableStream):
|
|
8328
8058
|
"ts_sync_mode": ts_sync_mode,
|
8329
8059
|
"enable": enable,
|
8330
8060
|
}
|
8331
|
-
| (extra_options or {})
|
8332
|
-
| kwargs,
|
8061
|
+
| (extra_options or {}),
|
8333
8062
|
)
|
8334
8063
|
return filter_node.video(0)
|
8335
8064
|
|
@@ -8341,7 +8070,6 @@ class VideoStream(FilterableStream):
|
|
8341
8070
|
chroma_strength: Double = Default(1.0),
|
8342
8071
|
enable: String = Default(None),
|
8343
8072
|
extra_options: dict[str, Any] = None,
|
8344
|
-
**kwargs: Any,
|
8345
8073
|
) -> VideoStream:
|
8346
8074
|
"""
|
8347
8075
|
|
@@ -8369,8 +8097,7 @@ class VideoStream(FilterableStream):
|
|
8369
8097
|
"chroma_strength": chroma_strength,
|
8370
8098
|
"enable": enable,
|
8371
8099
|
}
|
8372
|
-
| (extra_options or {})
|
8373
|
-
| kwargs,
|
8100
|
+
| (extra_options or {}),
|
8374
8101
|
)
|
8375
8102
|
return filter_node.video(0)
|
8376
8103
|
|
@@ -8385,7 +8112,6 @@ class VideoStream(FilterableStream):
|
|
8385
8112
|
eval: Int | Literal["init", "frame"] | Default = Default("init"),
|
8386
8113
|
aspect: Rational = Default("0/1"),
|
8387
8114
|
extra_options: dict[str, Any] = None,
|
8388
|
-
**kwargs: Any,
|
8389
8115
|
) -> VideoStream:
|
8390
8116
|
"""
|
8391
8117
|
|
@@ -8419,8 +8145,7 @@ class VideoStream(FilterableStream):
|
|
8419
8145
|
"eval": eval,
|
8420
8146
|
"aspect": aspect,
|
8421
8147
|
}
|
8422
|
-
| (extra_options or {})
|
8423
|
-
| kwargs,
|
8148
|
+
| (extra_options or {}),
|
8424
8149
|
)
|
8425
8150
|
return filter_node.video(0)
|
8426
8151
|
|
@@ -8432,7 +8157,6 @@ class VideoStream(FilterableStream):
|
|
8432
8157
|
transparency_color: Color = Default("lime"),
|
8433
8158
|
stats_mode: Int | Literal["full", "diff", "single"] | Default = Default("full"),
|
8434
8159
|
extra_options: dict[str, Any] = None,
|
8435
|
-
**kwargs: Any,
|
8436
8160
|
) -> VideoStream:
|
8437
8161
|
"""
|
8438
8162
|
|
@@ -8460,8 +8184,7 @@ class VideoStream(FilterableStream):
|
|
8460
8184
|
"transparency_color": transparency_color,
|
8461
8185
|
"stats_mode": stats_mode,
|
8462
8186
|
}
|
8463
|
-
| (extra_options or {})
|
8464
|
-
| kwargs,
|
8187
|
+
| (extra_options or {}),
|
8465
8188
|
)
|
8466
8189
|
return filter_node.video(0)
|
8467
8190
|
|
@@ -8478,7 +8201,6 @@ class VideoStream(FilterableStream):
|
|
8478
8201
|
alpha_threshold: Int = Default(128),
|
8479
8202
|
debug_kdtree: String = Default(None),
|
8480
8203
|
extra_options: dict[str, Any] = None,
|
8481
|
-
**kwargs: Any,
|
8482
8204
|
) -> VideoStream:
|
8483
8205
|
"""
|
8484
8206
|
|
@@ -8511,8 +8233,7 @@ class VideoStream(FilterableStream):
|
|
8511
8233
|
"alpha_threshold": alpha_threshold,
|
8512
8234
|
"debug_kdtree": debug_kdtree,
|
8513
8235
|
}
|
8514
|
-
| (extra_options or {})
|
8515
|
-
| kwargs,
|
8236
|
+
| (extra_options or {}),
|
8516
8237
|
)
|
8517
8238
|
return filter_node.video(0)
|
8518
8239
|
|
@@ -8523,7 +8244,6 @@ class VideoStream(FilterableStream):
|
|
8523
8244
|
seed: Int64 = Default(-1),
|
8524
8245
|
enable: String = Default(None),
|
8525
8246
|
extra_options: dict[str, Any] = None,
|
8526
|
-
**kwargs: Any,
|
8527
8247
|
) -> VideoStream:
|
8528
8248
|
"""
|
8529
8249
|
|
@@ -8549,8 +8269,7 @@ class VideoStream(FilterableStream):
|
|
8549
8269
|
"seed": seed,
|
8550
8270
|
"enable": enable,
|
8551
8271
|
}
|
8552
|
-
| (extra_options or {})
|
8553
|
-
| kwargs,
|
8272
|
+
| (extra_options or {}),
|
8554
8273
|
)
|
8555
8274
|
return filter_node.video(0)
|
8556
8275
|
|
@@ -8570,7 +8289,6 @@ class VideoStream(FilterableStream):
|
|
8570
8289
|
eval: Int | Literal["init", "frame"] | Default = Default("init"),
|
8571
8290
|
enable: String = Default(None),
|
8572
8291
|
extra_options: dict[str, Any] = None,
|
8573
|
-
**kwargs: Any,
|
8574
8292
|
) -> VideoStream:
|
8575
8293
|
"""
|
8576
8294
|
|
@@ -8614,8 +8332,7 @@ class VideoStream(FilterableStream):
|
|
8614
8332
|
"eval": eval,
|
8615
8333
|
"enable": enable,
|
8616
8334
|
}
|
8617
|
-
| (extra_options or {})
|
8618
|
-
| kwargs,
|
8335
|
+
| (extra_options or {}),
|
8619
8336
|
)
|
8620
8337
|
return filter_node.video(0)
|
8621
8338
|
|
@@ -8625,7 +8342,6 @@ class VideoStream(FilterableStream):
|
|
8625
8342
|
mode: Int | Literal["p", "t", "b", "T", "B", "u", "U", "a", "A"] | Default = Default("A"),
|
8626
8343
|
enable: String = Default(None),
|
8627
8344
|
extra_options: dict[str, Any] = None,
|
8628
|
-
**kwargs: Any,
|
8629
8345
|
) -> VideoStream:
|
8630
8346
|
"""
|
8631
8347
|
|
@@ -8649,8 +8365,7 @@ class VideoStream(FilterableStream):
|
|
8649
8365
|
"mode": mode,
|
8650
8366
|
"enable": enable,
|
8651
8367
|
}
|
8652
|
-
| (extra_options or {})
|
8653
|
-
| kwargs,
|
8368
|
+
| (extra_options or {}),
|
8654
8369
|
)
|
8655
8370
|
return filter_node.video(0)
|
8656
8371
|
|
@@ -8662,7 +8377,6 @@ class VideoStream(FilterableStream):
|
|
8662
8377
|
skip: Int = Default(1),
|
8663
8378
|
bypass: Boolean = Default(False),
|
8664
8379
|
extra_options: dict[str, Any] = None,
|
8665
|
-
**kwargs: Any,
|
8666
8380
|
) -> VideoStream:
|
8667
8381
|
"""
|
8668
8382
|
|
@@ -8690,12 +8404,14 @@ class VideoStream(FilterableStream):
|
|
8690
8404
|
"skip": skip,
|
8691
8405
|
"bypass": bypass,
|
8692
8406
|
}
|
8693
|
-
| (extra_options or {})
|
8694
|
-
| kwargs,
|
8407
|
+
| (extra_options or {}),
|
8695
8408
|
)
|
8696
8409
|
return filter_node.video(0)
|
8697
8410
|
|
8698
|
-
def pixdesctest(
|
8411
|
+
def pixdesctest(
|
8412
|
+
self,
|
8413
|
+
extra_options: dict[str, Any] = None,
|
8414
|
+
) -> VideoStream:
|
8699
8415
|
"""
|
8700
8416
|
|
8701
8417
|
Test pixel format definitions.
|
@@ -8710,7 +8426,7 @@ class VideoStream(FilterableStream):
|
|
8710
8426
|
filter_node = filter_node_factory(
|
8711
8427
|
FFMpegFilterDef(name="pixdesctest", typings_input=("video",), typings_output=("video",)),
|
8712
8428
|
self,
|
8713
|
-
**{} | (extra_options or {})
|
8429
|
+
**{} | (extra_options or {}),
|
8714
8430
|
)
|
8715
8431
|
return filter_node.video(0)
|
8716
8432
|
|
@@ -8723,7 +8439,6 @@ class VideoStream(FilterableStream):
|
|
8723
8439
|
planes: Flags = Default("F"),
|
8724
8440
|
enable: String = Default(None),
|
8725
8441
|
extra_options: dict[str, Any] = None,
|
8726
|
-
**kwargs: Any,
|
8727
8442
|
) -> VideoStream:
|
8728
8443
|
"""
|
8729
8444
|
|
@@ -8753,8 +8468,7 @@ class VideoStream(FilterableStream):
|
|
8753
8468
|
"planes": planes,
|
8754
8469
|
"enable": enable,
|
8755
8470
|
}
|
8756
|
-
| (extra_options or {})
|
8757
|
-
| kwargs,
|
8471
|
+
| (extra_options or {}),
|
8758
8472
|
)
|
8759
8473
|
return filter_node.video(0)
|
8760
8474
|
|
@@ -8770,7 +8484,6 @@ class VideoStream(FilterableStream):
|
|
8770
8484
|
wy: Float = Default(-1.0),
|
8771
8485
|
enable: String = Default(None),
|
8772
8486
|
extra_options: dict[str, Any] = None,
|
8773
|
-
**kwargs: Any,
|
8774
8487
|
) -> VideoStream:
|
8775
8488
|
"""
|
8776
8489
|
|
@@ -8806,8 +8519,7 @@ class VideoStream(FilterableStream):
|
|
8806
8519
|
"wy": wy,
|
8807
8520
|
"enable": enable,
|
8808
8521
|
}
|
8809
|
-
| (extra_options or {})
|
8810
|
-
| kwargs,
|
8522
|
+
| (extra_options or {}),
|
8811
8523
|
)
|
8812
8524
|
return filter_node.video(0)
|
8813
8525
|
|
@@ -8817,7 +8529,6 @@ class VideoStream(FilterableStream):
|
|
8817
8529
|
subfilters: String = Default("de"),
|
8818
8530
|
enable: String = Default(None),
|
8819
8531
|
extra_options: dict[str, Any] = None,
|
8820
|
-
**kwargs: Any,
|
8821
8532
|
) -> VideoStream:
|
8822
8533
|
"""
|
8823
8534
|
|
@@ -8841,8 +8552,7 @@ class VideoStream(FilterableStream):
|
|
8841
8552
|
"subfilters": subfilters,
|
8842
8553
|
"enable": enable,
|
8843
8554
|
}
|
8844
|
-
| (extra_options or {})
|
8845
|
-
| kwargs,
|
8555
|
+
| (extra_options or {}),
|
8846
8556
|
)
|
8847
8557
|
return filter_node.video(0)
|
8848
8558
|
|
@@ -8853,7 +8563,6 @@ class VideoStream(FilterableStream):
|
|
8853
8563
|
mode: Int | Literal["hard", "soft", "medium"] | Default = Default("medium"),
|
8854
8564
|
enable: String = Default(None),
|
8855
8565
|
extra_options: dict[str, Any] = None,
|
8856
|
-
**kwargs: Any,
|
8857
8566
|
) -> VideoStream:
|
8858
8567
|
"""
|
8859
8568
|
|
@@ -8879,8 +8588,7 @@ class VideoStream(FilterableStream):
|
|
8879
8588
|
"mode": mode,
|
8880
8589
|
"enable": enable,
|
8881
8590
|
}
|
8882
|
-
| (extra_options or {})
|
8883
|
-
| kwargs,
|
8591
|
+
| (extra_options or {}),
|
8884
8592
|
)
|
8885
8593
|
return filter_node.video(0)
|
8886
8594
|
|
@@ -8892,7 +8600,6 @@ class VideoStream(FilterableStream):
|
|
8892
8600
|
delta: Float = Default(0.0),
|
8893
8601
|
enable: String = Default(None),
|
8894
8602
|
extra_options: dict[str, Any] = None,
|
8895
|
-
**kwargs: Any,
|
8896
8603
|
) -> VideoStream:
|
8897
8604
|
"""
|
8898
8605
|
|
@@ -8920,8 +8627,7 @@ class VideoStream(FilterableStream):
|
|
8920
8627
|
"delta": delta,
|
8921
8628
|
"enable": enable,
|
8922
8629
|
}
|
8923
|
-
| (extra_options or {})
|
8924
|
-
| kwargs,
|
8630
|
+
| (extra_options or {}),
|
8925
8631
|
)
|
8926
8632
|
return filter_node.video(0)
|
8927
8633
|
|
@@ -8962,7 +8668,6 @@ class VideoStream(FilterableStream):
|
|
8962
8668
|
opacity: Float = Default(1.0),
|
8963
8669
|
enable: String = Default(None),
|
8964
8670
|
extra_options: dict[str, Any] = None,
|
8965
|
-
**kwargs: Any,
|
8966
8671
|
) -> VideoStream:
|
8967
8672
|
"""
|
8968
8673
|
|
@@ -8998,8 +8703,7 @@ class VideoStream(FilterableStream):
|
|
8998
8703
|
"opacity": opacity,
|
8999
8704
|
"enable": enable,
|
9000
8705
|
}
|
9001
|
-
| (extra_options or {})
|
9002
|
-
| kwargs,
|
8706
|
+
| (extra_options or {}),
|
9003
8707
|
)
|
9004
8708
|
return filter_node.video(0)
|
9005
8709
|
|
@@ -9016,7 +8720,6 @@ class VideoStream(FilterableStream):
|
|
9016
8720
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
9017
8721
|
enable: String = Default(None),
|
9018
8722
|
extra_options: dict[str, Any] = None,
|
9019
|
-
**kwargs: Any,
|
9020
8723
|
) -> VideoStream:
|
9021
8724
|
"""
|
9022
8725
|
|
@@ -9053,8 +8756,7 @@ class VideoStream(FilterableStream):
|
|
9053
8756
|
"ts_sync_mode": ts_sync_mode,
|
9054
8757
|
"enable": enable,
|
9055
8758
|
}
|
9056
|
-
| (extra_options or {})
|
9057
|
-
| kwargs,
|
8759
|
+
| (extra_options or {}),
|
9058
8760
|
)
|
9059
8761
|
return filter_node.video(0)
|
9060
8762
|
|
@@ -9068,7 +8770,6 @@ class VideoStream(FilterableStream):
|
|
9068
8770
|
sb: Boolean = Default(False),
|
9069
8771
|
mp: Int | Literal["y", "u", "v"] | Default = Default("y"),
|
9070
8772
|
extra_options: dict[str, Any] = None,
|
9071
|
-
**kwargs: Any,
|
9072
8773
|
) -> VideoStream:
|
9073
8774
|
"""
|
9074
8775
|
|
@@ -9100,8 +8801,7 @@ class VideoStream(FilterableStream):
|
|
9100
8801
|
"sb": sb,
|
9101
8802
|
"mp": mp,
|
9102
8803
|
}
|
9103
|
-
| (extra_options or {})
|
9104
|
-
| kwargs,
|
8804
|
+
| (extra_options or {}),
|
9105
8805
|
)
|
9106
8806
|
return filter_node.video(0)
|
9107
8807
|
|
@@ -9111,7 +8811,6 @@ class VideoStream(FilterableStream):
|
|
9111
8811
|
qp: String = Default(None),
|
9112
8812
|
enable: String = Default(None),
|
9113
8813
|
extra_options: dict[str, Any] = None,
|
9114
|
-
**kwargs: Any,
|
9115
8814
|
) -> VideoStream:
|
9116
8815
|
"""
|
9117
8816
|
|
@@ -9135,8 +8834,7 @@ class VideoStream(FilterableStream):
|
|
9135
8834
|
"qp": qp,
|
9136
8835
|
"enable": enable,
|
9137
8836
|
}
|
9138
|
-
| (extra_options or {})
|
9139
|
-
| kwargs,
|
8837
|
+
| (extra_options or {}),
|
9140
8838
|
)
|
9141
8839
|
return filter_node.video(0)
|
9142
8840
|
|
@@ -9146,7 +8844,6 @@ class VideoStream(FilterableStream):
|
|
9146
8844
|
frames: Int = Default(30),
|
9147
8845
|
seed: Int64 = Default(-1),
|
9148
8846
|
extra_options: dict[str, Any] = None,
|
9149
|
-
**kwargs: Any,
|
9150
8847
|
) -> VideoStream:
|
9151
8848
|
"""
|
9152
8849
|
|
@@ -9170,8 +8867,7 @@ class VideoStream(FilterableStream):
|
|
9170
8867
|
"frames": frames,
|
9171
8868
|
"seed": seed,
|
9172
8869
|
}
|
9173
|
-
| (extra_options or {})
|
9174
|
-
| kwargs,
|
8870
|
+
| (extra_options or {}),
|
9175
8871
|
)
|
9176
8872
|
return filter_node.video(0)
|
9177
8873
|
|
@@ -9185,7 +8881,6 @@ class VideoStream(FilterableStream):
|
|
9185
8881
|
lp: Boolean = Default(True),
|
9186
8882
|
enable: String = Default(None),
|
9187
8883
|
extra_options: dict[str, Any] = None,
|
9188
|
-
**kwargs: Any,
|
9189
8884
|
) -> VideoStream:
|
9190
8885
|
"""
|
9191
8886
|
|
@@ -9217,8 +8912,7 @@ class VideoStream(FilterableStream):
|
|
9217
8912
|
"lp": lp,
|
9218
8913
|
"enable": enable,
|
9219
8914
|
}
|
9220
|
-
| (extra_options or {})
|
9221
|
-
| kwargs,
|
8915
|
+
| (extra_options or {}),
|
9222
8916
|
)
|
9223
8917
|
return filter_node.video(0)
|
9224
8918
|
|
@@ -9229,7 +8923,6 @@ class VideoStream(FilterableStream):
|
|
9229
8923
|
thr_b: Double = Default(0.2),
|
9230
8924
|
thr_w: Double = Default(0.6),
|
9231
8925
|
extra_options: dict[str, Any] = None,
|
9232
|
-
**kwargs: Any,
|
9233
8926
|
) -> VideoStream:
|
9234
8927
|
"""
|
9235
8928
|
|
@@ -9255,8 +8948,7 @@ class VideoStream(FilterableStream):
|
|
9255
8948
|
"thr_b": thr_b,
|
9256
8949
|
"thr_w": thr_w,
|
9257
8950
|
}
|
9258
|
-
| (extra_options or {})
|
9259
|
-
| kwargs,
|
8951
|
+
| (extra_options or {}),
|
9260
8952
|
)
|
9261
8953
|
return filter_node.video(0)
|
9262
8954
|
|
@@ -9266,7 +8958,6 @@ class VideoStream(FilterableStream):
|
|
9266
8958
|
limit: Duration = Default(2.0),
|
9267
8959
|
speed: Double = Default(1.0),
|
9268
8960
|
extra_options: dict[str, Any] = None,
|
9269
|
-
**kwargs: Any,
|
9270
8961
|
) -> VideoStream:
|
9271
8962
|
"""
|
9272
8963
|
|
@@ -9290,8 +8981,7 @@ class VideoStream(FilterableStream):
|
|
9290
8981
|
"limit": limit,
|
9291
8982
|
"speed": speed,
|
9292
8983
|
}
|
9293
|
-
| (extra_options or {})
|
9294
|
-
| kwargs,
|
8984
|
+
| (extra_options or {}),
|
9295
8985
|
)
|
9296
8986
|
return filter_node.video(0)
|
9297
8987
|
|
@@ -9303,7 +8993,6 @@ class VideoStream(FilterableStream):
|
|
9303
8993
|
format: Int | Literal["color", "gray"] | Default = Default("color"),
|
9304
8994
|
fill: Color = Default("black"),
|
9305
8995
|
extra_options: dict[str, Any] = None,
|
9306
|
-
**kwargs: Any,
|
9307
8996
|
) -> VideoStream:
|
9308
8997
|
"""
|
9309
8998
|
|
@@ -9329,8 +9018,7 @@ class VideoStream(FilterableStream):
|
|
9329
9018
|
"format": format,
|
9330
9019
|
"fill": fill,
|
9331
9020
|
}
|
9332
|
-
| (extra_options or {})
|
9333
|
-
| kwargs,
|
9021
|
+
| (extra_options or {}),
|
9334
9022
|
)
|
9335
9023
|
return filter_node.video(0)
|
9336
9024
|
|
@@ -9343,7 +9031,6 @@ class VideoStream(FilterableStream):
|
|
9343
9031
|
m3: Int = Default(0),
|
9344
9032
|
enable: String = Default(None),
|
9345
9033
|
extra_options: dict[str, Any] = None,
|
9346
|
-
**kwargs: Any,
|
9347
9034
|
) -> VideoStream:
|
9348
9035
|
"""
|
9349
9036
|
|
@@ -9373,8 +9060,7 @@ class VideoStream(FilterableStream):
|
|
9373
9060
|
"m3": m3,
|
9374
9061
|
"enable": enable,
|
9375
9062
|
}
|
9376
|
-
| (extra_options or {})
|
9377
|
-
| kwargs,
|
9063
|
+
| (extra_options or {}),
|
9378
9064
|
)
|
9379
9065
|
return filter_node.video(0)
|
9380
9066
|
|
@@ -9384,7 +9070,6 @@ class VideoStream(FilterableStream):
|
|
9384
9070
|
filename: String = Default(None),
|
9385
9071
|
enable: String = Default(None),
|
9386
9072
|
extra_options: dict[str, Any] = None,
|
9387
|
-
**kwargs: Any,
|
9388
9073
|
) -> VideoStream:
|
9389
9074
|
"""
|
9390
9075
|
|
@@ -9408,12 +9093,14 @@ class VideoStream(FilterableStream):
|
|
9408
9093
|
"filename": filename,
|
9409
9094
|
"enable": enable,
|
9410
9095
|
}
|
9411
|
-
| (extra_options or {})
|
9412
|
-
| kwargs,
|
9096
|
+
| (extra_options or {}),
|
9413
9097
|
)
|
9414
9098
|
return filter_node.video(0)
|
9415
9099
|
|
9416
|
-
def repeatfields(
|
9100
|
+
def repeatfields(
|
9101
|
+
self,
|
9102
|
+
extra_options: dict[str, Any] = None,
|
9103
|
+
) -> VideoStream:
|
9417
9104
|
"""
|
9418
9105
|
|
9419
9106
|
Hard repeat fields based on MPEG repeat field flag.
|
@@ -9428,11 +9115,14 @@ class VideoStream(FilterableStream):
|
|
9428
9115
|
filter_node = filter_node_factory(
|
9429
9116
|
FFMpegFilterDef(name="repeatfields", typings_input=("video",), typings_output=("video",)),
|
9430
9117
|
self,
|
9431
|
-
**{} | (extra_options or {})
|
9118
|
+
**{} | (extra_options or {}),
|
9432
9119
|
)
|
9433
9120
|
return filter_node.video(0)
|
9434
9121
|
|
9435
|
-
def reverse(
|
9122
|
+
def reverse(
|
9123
|
+
self,
|
9124
|
+
extra_options: dict[str, Any] = None,
|
9125
|
+
) -> VideoStream:
|
9436
9126
|
"""
|
9437
9127
|
|
9438
9128
|
Reverse a clip.
|
@@ -9447,7 +9137,7 @@ class VideoStream(FilterableStream):
|
|
9447
9137
|
filter_node = filter_node_factory(
|
9448
9138
|
FFMpegFilterDef(name="reverse", typings_input=("video",), typings_output=("video",)),
|
9449
9139
|
self,
|
9450
|
-
**{} | (extra_options or {})
|
9140
|
+
**{} | (extra_options or {}),
|
9451
9141
|
)
|
9452
9142
|
return filter_node.video(0)
|
9453
9143
|
|
@@ -9465,7 +9155,6 @@ class VideoStream(FilterableStream):
|
|
9465
9155
|
edge: Int | Literal["smear", "wrap"] | Default = Default("smear"),
|
9466
9156
|
enable: String = Default(None),
|
9467
9157
|
extra_options: dict[str, Any] = None,
|
9468
|
-
**kwargs: Any,
|
9469
9158
|
) -> VideoStream:
|
9470
9159
|
"""
|
9471
9160
|
|
@@ -9505,8 +9194,7 @@ class VideoStream(FilterableStream):
|
|
9505
9194
|
"edge": edge,
|
9506
9195
|
"enable": enable,
|
9507
9196
|
}
|
9508
|
-
| (extra_options or {})
|
9509
|
-
| kwargs,
|
9197
|
+
| (extra_options or {}),
|
9510
9198
|
)
|
9511
9199
|
return filter_node.video(0)
|
9512
9200
|
|
@@ -9518,7 +9206,6 @@ class VideoStream(FilterableStream):
|
|
9518
9206
|
delta: Float = Default(0.0),
|
9519
9207
|
enable: String = Default(None),
|
9520
9208
|
extra_options: dict[str, Any] = None,
|
9521
|
-
**kwargs: Any,
|
9522
9209
|
) -> VideoStream:
|
9523
9210
|
"""
|
9524
9211
|
|
@@ -9546,8 +9233,7 @@ class VideoStream(FilterableStream):
|
|
9546
9233
|
"delta": delta,
|
9547
9234
|
"enable": enable,
|
9548
9235
|
}
|
9549
|
-
| (extra_options or {})
|
9550
|
-
| kwargs,
|
9236
|
+
| (extra_options or {}),
|
9551
9237
|
)
|
9552
9238
|
return filter_node.video(0)
|
9553
9239
|
|
@@ -9561,7 +9247,6 @@ class VideoStream(FilterableStream):
|
|
9561
9247
|
bilinear: Boolean = Default(True),
|
9562
9248
|
enable: String = Default(None),
|
9563
9249
|
extra_options: dict[str, Any] = None,
|
9564
|
-
**kwargs: Any,
|
9565
9250
|
) -> VideoStream:
|
9566
9251
|
"""
|
9567
9252
|
|
@@ -9593,8 +9278,7 @@ class VideoStream(FilterableStream):
|
|
9593
9278
|
"bilinear": bilinear,
|
9594
9279
|
"enable": enable,
|
9595
9280
|
}
|
9596
|
-
| (extra_options or {})
|
9597
|
-
| kwargs,
|
9281
|
+
| (extra_options or {}),
|
9598
9282
|
)
|
9599
9283
|
return filter_node.video(0)
|
9600
9284
|
|
@@ -9609,7 +9293,6 @@ class VideoStream(FilterableStream):
|
|
9609
9293
|
chroma_strength: Float = Default(-0.9),
|
9610
9294
|
enable: String = Default(None),
|
9611
9295
|
extra_options: dict[str, Any] = None,
|
9612
|
-
**kwargs: Any,
|
9613
9296
|
) -> VideoStream:
|
9614
9297
|
"""
|
9615
9298
|
|
@@ -9643,8 +9326,7 @@ class VideoStream(FilterableStream):
|
|
9643
9326
|
"chroma_strength": chroma_strength,
|
9644
9327
|
"enable": enable,
|
9645
9328
|
}
|
9646
|
-
| (extra_options or {})
|
9647
|
-
| kwargs,
|
9329
|
+
| (extra_options or {}),
|
9648
9330
|
)
|
9649
9331
|
return filter_node.video(0)
|
9650
9332
|
|
@@ -9677,7 +9359,6 @@ class VideoStream(FilterableStream):
|
|
9677
9359
|
param1: Double = Default("DBL_MAX"),
|
9678
9360
|
eval: Int | Literal["init", "frame"] | Default = Default("init"),
|
9679
9361
|
extra_options: dict[str, Any] = None,
|
9680
|
-
**kwargs: Any,
|
9681
9362
|
) -> VideoStream:
|
9682
9363
|
"""
|
9683
9364
|
|
@@ -9731,8 +9412,7 @@ class VideoStream(FilterableStream):
|
|
9731
9412
|
"param1": param1,
|
9732
9413
|
"eval": eval,
|
9733
9414
|
}
|
9734
|
-
| (extra_options or {})
|
9735
|
-
| kwargs,
|
9415
|
+
| (extra_options or {}),
|
9736
9416
|
)
|
9737
9417
|
return filter_node.video(0)
|
9738
9418
|
|
@@ -9745,7 +9425,6 @@ class VideoStream(FilterableStream):
|
|
9745
9425
|
color_primaries: String = Default(None),
|
9746
9426
|
color_transfer: String = Default(None),
|
9747
9427
|
extra_options: dict[str, Any] = None,
|
9748
|
-
**kwargs: Any,
|
9749
9428
|
) -> VideoStream:
|
9750
9429
|
"""
|
9751
9430
|
|
@@ -9775,8 +9454,7 @@ class VideoStream(FilterableStream):
|
|
9775
9454
|
"color_primaries": color_primaries,
|
9776
9455
|
"color_transfer": color_transfer,
|
9777
9456
|
}
|
9778
|
-
| (extra_options or {})
|
9779
|
-
| kwargs,
|
9457
|
+
| (extra_options or {}),
|
9780
9458
|
)
|
9781
9459
|
return filter_node.video(0)
|
9782
9460
|
|
@@ -9786,7 +9464,6 @@ class VideoStream(FilterableStream):
|
|
9786
9464
|
threshold: Double = Default(10.0),
|
9787
9465
|
sc_pass: Boolean = Default(False),
|
9788
9466
|
extra_options: dict[str, Any] = None,
|
9789
|
-
**kwargs: Any,
|
9790
9467
|
) -> VideoStream:
|
9791
9468
|
"""
|
9792
9469
|
|
@@ -9810,8 +9487,7 @@ class VideoStream(FilterableStream):
|
|
9810
9487
|
"threshold": threshold,
|
9811
9488
|
"sc_pass": sc_pass,
|
9812
9489
|
}
|
9813
|
-
| (extra_options or {})
|
9814
|
-
| kwargs,
|
9490
|
+
| (extra_options or {}),
|
9815
9491
|
)
|
9816
9492
|
return filter_node.video(0)
|
9817
9493
|
|
@@ -9823,7 +9499,6 @@ class VideoStream(FilterableStream):
|
|
9823
9499
|
delta: Float = Default(0.0),
|
9824
9500
|
enable: String = Default(None),
|
9825
9501
|
extra_options: dict[str, Any] = None,
|
9826
|
-
**kwargs: Any,
|
9827
9502
|
) -> VideoStream:
|
9828
9503
|
"""
|
9829
9504
|
|
@@ -9851,8 +9526,7 @@ class VideoStream(FilterableStream):
|
|
9851
9526
|
"delta": delta,
|
9852
9527
|
"enable": enable,
|
9853
9528
|
}
|
9854
|
-
| (extra_options or {})
|
9855
|
-
| kwargs,
|
9529
|
+
| (extra_options or {}),
|
9856
9530
|
)
|
9857
9531
|
return filter_node.video(0)
|
9858
9532
|
|
@@ -9865,7 +9539,6 @@ class VideoStream(FilterableStream):
|
|
9865
9539
|
vpos: Float = Default(0.0),
|
9866
9540
|
enable: String = Default(None),
|
9867
9541
|
extra_options: dict[str, Any] = None,
|
9868
|
-
**kwargs: Any,
|
9869
9542
|
) -> VideoStream:
|
9870
9543
|
"""
|
9871
9544
|
|
@@ -9895,8 +9568,7 @@ class VideoStream(FilterableStream):
|
|
9895
9568
|
"vpos": vpos,
|
9896
9569
|
"enable": enable,
|
9897
9570
|
}
|
9898
|
-
| (extra_options or {})
|
9899
|
-
| kwargs,
|
9571
|
+
| (extra_options or {}),
|
9900
9572
|
)
|
9901
9573
|
return filter_node.video(0)
|
9902
9574
|
|
@@ -9906,7 +9578,6 @@ class VideoStream(FilterableStream):
|
|
9906
9578
|
timestamps: String = Default(None),
|
9907
9579
|
frames: String = Default(None),
|
9908
9580
|
extra_options: dict[str, Any] = None,
|
9909
|
-
**kwargs: Any,
|
9910
9581
|
) -> FilterNode:
|
9911
9582
|
"""
|
9912
9583
|
|
@@ -9935,8 +9606,7 @@ class VideoStream(FilterableStream):
|
|
9935
9606
|
"timestamps": timestamps,
|
9936
9607
|
"frames": frames,
|
9937
9608
|
}
|
9938
|
-
| (extra_options or {})
|
9939
|
-
| kwargs,
|
9609
|
+
| (extra_options or {}),
|
9940
9610
|
)
|
9941
9611
|
|
9942
9612
|
return filter_node
|
@@ -9947,7 +9617,6 @@ class VideoStream(FilterableStream):
|
|
9947
9617
|
expr: String = Default("1"),
|
9948
9618
|
outputs: Int = Default(1),
|
9949
9619
|
extra_options: dict[str, Any] = None,
|
9950
|
-
**kwargs: Any,
|
9951
9620
|
) -> FilterNode:
|
9952
9621
|
"""
|
9953
9622
|
|
@@ -9974,8 +9643,7 @@ class VideoStream(FilterableStream):
|
|
9974
9643
|
"expr": expr,
|
9975
9644
|
"outputs": outputs,
|
9976
9645
|
}
|
9977
|
-
| (extra_options or {})
|
9978
|
-
| kwargs,
|
9646
|
+
| (extra_options or {}),
|
9979
9647
|
)
|
9980
9648
|
|
9981
9649
|
return filter_node
|
@@ -9996,7 +9664,6 @@ class VideoStream(FilterableStream):
|
|
9996
9664
|
psfile: String = Default(None),
|
9997
9665
|
enable: String = Default(None),
|
9998
9666
|
extra_options: dict[str, Any] = None,
|
9999
|
-
**kwargs: Any,
|
10000
9667
|
) -> VideoStream:
|
10001
9668
|
"""
|
10002
9669
|
|
@@ -10040,8 +9707,7 @@ class VideoStream(FilterableStream):
|
|
10040
9707
|
"psfile": psfile,
|
10041
9708
|
"enable": enable,
|
10042
9709
|
}
|
10043
|
-
| (extra_options or {})
|
10044
|
-
| kwargs,
|
9710
|
+
| (extra_options or {}),
|
10045
9711
|
)
|
10046
9712
|
return filter_node.video(0)
|
10047
9713
|
|
@@ -10051,7 +9717,6 @@ class VideoStream(FilterableStream):
|
|
10051
9717
|
commands: String = Default(None),
|
10052
9718
|
filename: String = Default(None),
|
10053
9719
|
extra_options: dict[str, Any] = None,
|
10054
|
-
**kwargs: Any,
|
10055
9720
|
) -> VideoStream:
|
10056
9721
|
"""
|
10057
9722
|
|
@@ -10075,12 +9740,14 @@ class VideoStream(FilterableStream):
|
|
10075
9740
|
"commands": commands,
|
10076
9741
|
"filename": filename,
|
10077
9742
|
}
|
10078
|
-
| (extra_options or {})
|
10079
|
-
| kwargs,
|
9743
|
+
| (extra_options or {}),
|
10080
9744
|
)
|
10081
9745
|
return filter_node.video(0)
|
10082
9746
|
|
10083
|
-
def separatefields(
|
9747
|
+
def separatefields(
|
9748
|
+
self,
|
9749
|
+
extra_options: dict[str, Any] = None,
|
9750
|
+
) -> VideoStream:
|
10084
9751
|
"""
|
10085
9752
|
|
10086
9753
|
Split input video frames into fields.
|
@@ -10095,7 +9762,7 @@ class VideoStream(FilterableStream):
|
|
10095
9762
|
filter_node = filter_node_factory(
|
10096
9763
|
FFMpegFilterDef(name="separatefields", typings_input=("video",), typings_output=("video",)),
|
10097
9764
|
self,
|
10098
|
-
**{} | (extra_options or {})
|
9765
|
+
**{} | (extra_options or {}),
|
10099
9766
|
)
|
10100
9767
|
return filter_node.video(0)
|
10101
9768
|
|
@@ -10105,7 +9772,6 @@ class VideoStream(FilterableStream):
|
|
10105
9772
|
dar: String = Default("0"),
|
10106
9773
|
max: Int = Default(100),
|
10107
9774
|
extra_options: dict[str, Any] = None,
|
10108
|
-
**kwargs: Any,
|
10109
9775
|
) -> VideoStream:
|
10110
9776
|
"""
|
10111
9777
|
|
@@ -10129,8 +9795,7 @@ class VideoStream(FilterableStream):
|
|
10129
9795
|
"dar": dar,
|
10130
9796
|
"max": max,
|
10131
9797
|
}
|
10132
|
-
| (extra_options or {})
|
10133
|
-
| kwargs,
|
9798
|
+
| (extra_options or {}),
|
10134
9799
|
)
|
10135
9800
|
return filter_node.video(0)
|
10136
9801
|
|
@@ -10139,7 +9804,6 @@ class VideoStream(FilterableStream):
|
|
10139
9804
|
*,
|
10140
9805
|
mode: Int | Literal["auto", "bff", "tff", "prog"] | Default = Default("auto"),
|
10141
9806
|
extra_options: dict[str, Any] = None,
|
10142
|
-
**kwargs: Any,
|
10143
9807
|
) -> VideoStream:
|
10144
9808
|
"""
|
10145
9809
|
|
@@ -10161,8 +9825,7 @@ class VideoStream(FilterableStream):
|
|
10161
9825
|
**{
|
10162
9826
|
"mode": mode,
|
10163
9827
|
}
|
10164
|
-
| (extra_options or {})
|
10165
|
-
| kwargs,
|
9828
|
+
| (extra_options or {}),
|
10166
9829
|
)
|
10167
9830
|
return filter_node.video(0)
|
10168
9831
|
|
@@ -10233,7 +9896,6 @@ class VideoStream(FilterableStream):
|
|
10233
9896
|
]
|
10234
9897
|
| Default = Default("auto"),
|
10235
9898
|
extra_options: dict[str, Any] = None,
|
10236
|
-
**kwargs: Any,
|
10237
9899
|
) -> VideoStream:
|
10238
9900
|
"""
|
10239
9901
|
|
@@ -10263,13 +9925,15 @@ class VideoStream(FilterableStream):
|
|
10263
9925
|
"color_trc": color_trc,
|
10264
9926
|
"colorspace": colorspace,
|
10265
9927
|
}
|
10266
|
-
| (extra_options or {})
|
10267
|
-
| kwargs,
|
9928
|
+
| (extra_options or {}),
|
10268
9929
|
)
|
10269
9930
|
return filter_node.video(0)
|
10270
9931
|
|
10271
9932
|
def setpts(
|
10272
|
-
self,
|
9933
|
+
self,
|
9934
|
+
*,
|
9935
|
+
expr: String = Default("PTS"),
|
9936
|
+
extra_options: dict[str, Any] = None,
|
10273
9937
|
) -> VideoStream:
|
10274
9938
|
"""
|
10275
9939
|
|
@@ -10291,8 +9955,7 @@ class VideoStream(FilterableStream):
|
|
10291
9955
|
**{
|
10292
9956
|
"expr": expr,
|
10293
9957
|
}
|
10294
|
-
| (extra_options or {})
|
10295
|
-
| kwargs,
|
9958
|
+
| (extra_options or {}),
|
10296
9959
|
)
|
10297
9960
|
return filter_node.video(0)
|
10298
9961
|
|
@@ -10303,7 +9966,6 @@ class VideoStream(FilterableStream):
|
|
10303
9966
|
| Literal["auto", "unspecified", "unknown", "limited", "tv", "mpeg", "full", "pc", "jpeg"]
|
10304
9967
|
| Default = Default("auto"),
|
10305
9968
|
extra_options: dict[str, Any] = None,
|
10306
|
-
**kwargs: Any,
|
10307
9969
|
) -> VideoStream:
|
10308
9970
|
"""
|
10309
9971
|
|
@@ -10325,8 +9987,7 @@ class VideoStream(FilterableStream):
|
|
10325
9987
|
**{
|
10326
9988
|
"range": range,
|
10327
9989
|
}
|
10328
|
-
| (extra_options or {})
|
10329
|
-
| kwargs,
|
9990
|
+
| (extra_options or {}),
|
10330
9991
|
)
|
10331
9992
|
return filter_node.video(0)
|
10332
9993
|
|
@@ -10336,7 +9997,6 @@ class VideoStream(FilterableStream):
|
|
10336
9997
|
sar: String = Default("0"),
|
10337
9998
|
max: Int = Default(100),
|
10338
9999
|
extra_options: dict[str, Any] = None,
|
10339
|
-
**kwargs: Any,
|
10340
10000
|
) -> VideoStream:
|
10341
10001
|
"""
|
10342
10002
|
|
@@ -10360,13 +10020,15 @@ class VideoStream(FilterableStream):
|
|
10360
10020
|
"sar": sar,
|
10361
10021
|
"max": max,
|
10362
10022
|
}
|
10363
|
-
| (extra_options or {})
|
10364
|
-
| kwargs,
|
10023
|
+
| (extra_options or {}),
|
10365
10024
|
)
|
10366
10025
|
return filter_node.video(0)
|
10367
10026
|
|
10368
10027
|
def settb(
|
10369
|
-
self,
|
10028
|
+
self,
|
10029
|
+
*,
|
10030
|
+
expr: String = Default("intb"),
|
10031
|
+
extra_options: dict[str, Any] = None,
|
10370
10032
|
) -> VideoStream:
|
10371
10033
|
"""
|
10372
10034
|
|
@@ -10388,8 +10050,7 @@ class VideoStream(FilterableStream):
|
|
10388
10050
|
**{
|
10389
10051
|
"expr": expr,
|
10390
10052
|
}
|
10391
|
-
| (extra_options or {})
|
10392
|
-
| kwargs,
|
10053
|
+
| (extra_options or {}),
|
10393
10054
|
)
|
10394
10055
|
return filter_node.video(0)
|
10395
10056
|
|
@@ -10402,7 +10063,6 @@ class VideoStream(FilterableStream):
|
|
10402
10063
|
interp: Int | Literal["nearest", "bilinear"] | Default = Default("bilinear"),
|
10403
10064
|
enable: String = Default(None),
|
10404
10065
|
extra_options: dict[str, Any] = None,
|
10405
|
-
**kwargs: Any,
|
10406
10066
|
) -> VideoStream:
|
10407
10067
|
"""
|
10408
10068
|
|
@@ -10432,13 +10092,15 @@ class VideoStream(FilterableStream):
|
|
10432
10092
|
"interp": interp,
|
10433
10093
|
"enable": enable,
|
10434
10094
|
}
|
10435
|
-
| (extra_options or {})
|
10436
|
-
| kwargs,
|
10095
|
+
| (extra_options or {}),
|
10437
10096
|
)
|
10438
10097
|
return filter_node.video(0)
|
10439
10098
|
|
10440
10099
|
def showinfo(
|
10441
|
-
self,
|
10100
|
+
self,
|
10101
|
+
*,
|
10102
|
+
checksum: Boolean = Default(True),
|
10103
|
+
extra_options: dict[str, Any] = None,
|
10442
10104
|
) -> VideoStream:
|
10443
10105
|
"""
|
10444
10106
|
|
@@ -10460,12 +10122,16 @@ class VideoStream(FilterableStream):
|
|
10460
10122
|
**{
|
10461
10123
|
"checksum": checksum,
|
10462
10124
|
}
|
10463
|
-
| (extra_options or {})
|
10464
|
-
| kwargs,
|
10125
|
+
| (extra_options or {}),
|
10465
10126
|
)
|
10466
10127
|
return filter_node.video(0)
|
10467
10128
|
|
10468
|
-
def showpalette(
|
10129
|
+
def showpalette(
|
10130
|
+
self,
|
10131
|
+
*,
|
10132
|
+
s: Int = Default(30),
|
10133
|
+
extra_options: dict[str, Any] = None,
|
10134
|
+
) -> VideoStream:
|
10469
10135
|
"""
|
10470
10136
|
|
10471
10137
|
Display frame palette.
|
@@ -10486,8 +10152,7 @@ class VideoStream(FilterableStream):
|
|
10486
10152
|
**{
|
10487
10153
|
"s": s,
|
10488
10154
|
}
|
10489
|
-
| (extra_options or {})
|
10490
|
-
| kwargs,
|
10155
|
+
| (extra_options or {}),
|
10491
10156
|
)
|
10492
10157
|
return filter_node.video(0)
|
10493
10158
|
|
@@ -10497,7 +10162,6 @@ class VideoStream(FilterableStream):
|
|
10497
10162
|
mapping: String = Default("0"),
|
10498
10163
|
enable: String = Default(None),
|
10499
10164
|
extra_options: dict[str, Any] = None,
|
10500
|
-
**kwargs: Any,
|
10501
10165
|
) -> VideoStream:
|
10502
10166
|
"""
|
10503
10167
|
|
@@ -10521,8 +10185,7 @@ class VideoStream(FilterableStream):
|
|
10521
10185
|
"mapping": mapping,
|
10522
10186
|
"enable": enable,
|
10523
10187
|
}
|
10524
|
-
| (extra_options or {})
|
10525
|
-
| kwargs,
|
10188
|
+
| (extra_options or {}),
|
10526
10189
|
)
|
10527
10190
|
return filter_node.video(0)
|
10528
10191
|
|
@@ -10536,7 +10199,6 @@ class VideoStream(FilterableStream):
|
|
10536
10199
|
seed: Int64 = Default(-1),
|
10537
10200
|
enable: String = Default(None),
|
10538
10201
|
extra_options: dict[str, Any] = None,
|
10539
|
-
**kwargs: Any,
|
10540
10202
|
) -> VideoStream:
|
10541
10203
|
"""
|
10542
10204
|
|
@@ -10568,8 +10230,7 @@ class VideoStream(FilterableStream):
|
|
10568
10230
|
"seed": seed,
|
10569
10231
|
"enable": enable,
|
10570
10232
|
}
|
10571
|
-
| (extra_options or {})
|
10572
|
-
| kwargs,
|
10233
|
+
| (extra_options or {}),
|
10573
10234
|
)
|
10574
10235
|
return filter_node.video(0)
|
10575
10236
|
|
@@ -10582,7 +10243,6 @@ class VideoStream(FilterableStream):
|
|
10582
10243
|
map3: Int = Default(3),
|
10583
10244
|
enable: String = Default(None),
|
10584
10245
|
extra_options: dict[str, Any] = None,
|
10585
|
-
**kwargs: Any,
|
10586
10246
|
) -> VideoStream:
|
10587
10247
|
"""
|
10588
10248
|
|
@@ -10612,8 +10272,7 @@ class VideoStream(FilterableStream):
|
|
10612
10272
|
"map3": map3,
|
10613
10273
|
"enable": enable,
|
10614
10274
|
}
|
10615
|
-
| (extra_options or {})
|
10616
|
-
| kwargs,
|
10275
|
+
| (extra_options or {}),
|
10617
10276
|
)
|
10618
10277
|
return filter_node.video(0)
|
10619
10278
|
|
@@ -10648,7 +10307,6 @@ class VideoStream(FilterableStream):
|
|
10648
10307
|
| Default = Default(-1),
|
10649
10308
|
enable: String = Default(None),
|
10650
10309
|
extra_options: dict[str, Any] = None,
|
10651
|
-
**kwargs: Any,
|
10652
10310
|
) -> VideoStream:
|
10653
10311
|
"""
|
10654
10312
|
|
@@ -10674,8 +10332,7 @@ class VideoStream(FilterableStream):
|
|
10674
10332
|
"type": type,
|
10675
10333
|
"enable": enable,
|
10676
10334
|
}
|
10677
|
-
| (extra_options or {})
|
10678
|
-
| kwargs,
|
10335
|
+
| (extra_options or {}),
|
10679
10336
|
)
|
10680
10337
|
return filter_node.video(0)
|
10681
10338
|
|
@@ -10686,7 +10343,6 @@ class VideoStream(FilterableStream):
|
|
10686
10343
|
out: Int | Literal["tout", "vrep", "brng"] | Default = Default(-1),
|
10687
10344
|
c: Color = Default("yellow"),
|
10688
10345
|
extra_options: dict[str, Any] = None,
|
10689
|
-
**kwargs: Any,
|
10690
10346
|
) -> VideoStream:
|
10691
10347
|
"""
|
10692
10348
|
|
@@ -10712,13 +10368,15 @@ class VideoStream(FilterableStream):
|
|
10712
10368
|
"out": out,
|
10713
10369
|
"c": c,
|
10714
10370
|
}
|
10715
|
-
| (extra_options or {})
|
10716
|
-
| kwargs,
|
10371
|
+
| (extra_options or {}),
|
10717
10372
|
)
|
10718
10373
|
return filter_node.video(0)
|
10719
10374
|
|
10720
10375
|
def siti(
|
10721
|
-
self,
|
10376
|
+
self,
|
10377
|
+
*,
|
10378
|
+
print_summary: Boolean = Default(False),
|
10379
|
+
extra_options: dict[str, Any] = None,
|
10722
10380
|
) -> VideoStream:
|
10723
10381
|
"""
|
10724
10382
|
|
@@ -10740,8 +10398,7 @@ class VideoStream(FilterableStream):
|
|
10740
10398
|
**{
|
10741
10399
|
"print_summary": print_summary,
|
10742
10400
|
}
|
10743
|
-
| (extra_options or {})
|
10744
|
-
| kwargs,
|
10401
|
+
| (extra_options or {}),
|
10745
10402
|
)
|
10746
10403
|
return filter_node.video(0)
|
10747
10404
|
|
@@ -10756,7 +10413,6 @@ class VideoStream(FilterableStream):
|
|
10756
10413
|
chroma_threshold: Int = Default(-31),
|
10757
10414
|
enable: String = Default(None),
|
10758
10415
|
extra_options: dict[str, Any] = None,
|
10759
|
-
**kwargs: Any,
|
10760
10416
|
) -> VideoStream:
|
10761
10417
|
"""
|
10762
10418
|
|
@@ -10790,8 +10446,7 @@ class VideoStream(FilterableStream):
|
|
10790
10446
|
"chroma_threshold": chroma_threshold,
|
10791
10447
|
"enable": enable,
|
10792
10448
|
}
|
10793
|
-
| (extra_options or {})
|
10794
|
-
| kwargs,
|
10449
|
+
| (extra_options or {}),
|
10795
10450
|
)
|
10796
10451
|
return filter_node.video(0)
|
10797
10452
|
|
@@ -10803,7 +10458,6 @@ class VideoStream(FilterableStream):
|
|
10803
10458
|
delta: Float = Default(0.0),
|
10804
10459
|
enable: String = Default(None),
|
10805
10460
|
extra_options: dict[str, Any] = None,
|
10806
|
-
**kwargs: Any,
|
10807
10461
|
) -> VideoStream:
|
10808
10462
|
"""
|
10809
10463
|
|
@@ -10831,8 +10485,7 @@ class VideoStream(FilterableStream):
|
|
10831
10485
|
"delta": delta,
|
10832
10486
|
"enable": enable,
|
10833
10487
|
}
|
10834
|
-
| (extra_options or {})
|
10835
|
-
| kwargs,
|
10488
|
+
| (extra_options or {}),
|
10836
10489
|
)
|
10837
10490
|
return filter_node.video(0)
|
10838
10491
|
|
@@ -10873,7 +10526,6 @@ class VideoStream(FilterableStream):
|
|
10873
10526
|
overlap: Float = Default(1.0),
|
10874
10527
|
orientation: Int | Literal["vertical", "horizontal"] | Default = Default("vertical"),
|
10875
10528
|
extra_options: dict[str, Any] = None,
|
10876
|
-
**kwargs: Any,
|
10877
10529
|
) -> AudioStream:
|
10878
10530
|
"""
|
10879
10531
|
|
@@ -10908,12 +10560,16 @@ class VideoStream(FilterableStream):
|
|
10908
10560
|
"overlap": overlap,
|
10909
10561
|
"orientation": orientation,
|
10910
10562
|
}
|
10911
|
-
| (extra_options or {})
|
10912
|
-
| kwargs,
|
10563
|
+
| (extra_options or {}),
|
10913
10564
|
)
|
10914
10565
|
return filter_node.audio(0)
|
10915
10566
|
|
10916
|
-
def split(
|
10567
|
+
def split(
|
10568
|
+
self,
|
10569
|
+
*,
|
10570
|
+
outputs: Int = Default(2),
|
10571
|
+
extra_options: dict[str, Any] = None,
|
10572
|
+
) -> FilterNode:
|
10917
10573
|
"""
|
10918
10574
|
|
10919
10575
|
Pass on the input to N video outputs.
|
@@ -10935,8 +10591,7 @@ class VideoStream(FilterableStream):
|
|
10935
10591
|
**{
|
10936
10592
|
"outputs": outputs,
|
10937
10593
|
}
|
10938
|
-
| (extra_options or {})
|
10939
|
-
| kwargs,
|
10594
|
+
| (extra_options or {}),
|
10940
10595
|
)
|
10941
10596
|
|
10942
10597
|
return filter_node
|
@@ -10950,7 +10605,6 @@ class VideoStream(FilterableStream):
|
|
10950
10605
|
use_bframe_qp: Boolean = Default(False),
|
10951
10606
|
enable: String = Default(None),
|
10952
10607
|
extra_options: dict[str, Any] = None,
|
10953
|
-
**kwargs: Any,
|
10954
10608
|
) -> VideoStream:
|
10955
10609
|
"""
|
10956
10610
|
|
@@ -10980,8 +10634,7 @@ class VideoStream(FilterableStream):
|
|
10980
10634
|
"use_bframe_qp": use_bframe_qp,
|
10981
10635
|
"enable": enable,
|
10982
10636
|
}
|
10983
|
-
| (extra_options or {})
|
10984
|
-
| kwargs,
|
10637
|
+
| (extra_options or {}),
|
10985
10638
|
)
|
10986
10639
|
return filter_node.video(0)
|
10987
10640
|
|
@@ -10994,7 +10647,6 @@ class VideoStream(FilterableStream):
|
|
10994
10647
|
input: String = Default("x"),
|
10995
10648
|
output: String = Default("y"),
|
10996
10649
|
extra_options: dict[str, Any] = None,
|
10997
|
-
**kwargs: Any,
|
10998
10650
|
) -> VideoStream:
|
10999
10651
|
"""
|
11000
10652
|
|
@@ -11024,8 +10676,7 @@ class VideoStream(FilterableStream):
|
|
11024
10676
|
"input": input,
|
11025
10677
|
"output": output,
|
11026
10678
|
}
|
11027
|
-
| (extra_options or {})
|
11028
|
-
| kwargs,
|
10679
|
+
| (extra_options or {}),
|
11029
10680
|
)
|
11030
10681
|
return filter_node.video(0)
|
11031
10682
|
|
@@ -11040,7 +10691,6 @@ class VideoStream(FilterableStream):
|
|
11040
10691
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
11041
10692
|
enable: String = Default(None),
|
11042
10693
|
extra_options: dict[str, Any] = None,
|
11043
|
-
**kwargs: Any,
|
11044
10694
|
) -> VideoStream:
|
11045
10695
|
"""
|
11046
10696
|
|
@@ -11073,8 +10723,7 @@ class VideoStream(FilterableStream):
|
|
11073
10723
|
"ts_sync_mode": ts_sync_mode,
|
11074
10724
|
"enable": enable,
|
11075
10725
|
}
|
11076
|
-
| (extra_options or {})
|
11077
|
-
| kwargs,
|
10726
|
+
| (extra_options or {}),
|
11078
10727
|
)
|
11079
10728
|
return filter_node.video(0)
|
11080
10729
|
|
@@ -11145,7 +10794,6 @@ class VideoStream(FilterableStream):
|
|
11145
10794
|
]
|
11146
10795
|
| Default = Default("arcd"),
|
11147
10796
|
extra_options: dict[str, Any] = None,
|
11148
|
-
**kwargs: Any,
|
11149
10797
|
) -> VideoStream:
|
11150
10798
|
"""
|
11151
10799
|
|
@@ -11169,8 +10817,7 @@ class VideoStream(FilterableStream):
|
|
11169
10817
|
"in": _in,
|
11170
10818
|
"out": out,
|
11171
10819
|
}
|
11172
|
-
| (extra_options or {})
|
11173
|
-
| kwargs,
|
10820
|
+
| (extra_options or {}),
|
11174
10821
|
)
|
11175
10822
|
return filter_node.video(0)
|
11176
10823
|
|
@@ -11186,7 +10833,6 @@ class VideoStream(FilterableStream):
|
|
11186
10833
|
force_style: String = Default(None),
|
11187
10834
|
wrap_unicode: Boolean = Default("auto"),
|
11188
10835
|
extra_options: dict[str, Any] = None,
|
11189
|
-
**kwargs: Any,
|
11190
10836
|
) -> VideoStream:
|
11191
10837
|
"""
|
11192
10838
|
|
@@ -11222,12 +10868,14 @@ class VideoStream(FilterableStream):
|
|
11222
10868
|
"force_style": force_style,
|
11223
10869
|
"wrap_unicode": wrap_unicode,
|
11224
10870
|
}
|
11225
|
-
| (extra_options or {})
|
11226
|
-
| kwargs,
|
10871
|
+
| (extra_options or {}),
|
11227
10872
|
)
|
11228
10873
|
return filter_node.video(0)
|
11229
10874
|
|
11230
|
-
def super2xsai(
|
10875
|
+
def super2xsai(
|
10876
|
+
self,
|
10877
|
+
extra_options: dict[str, Any] = None,
|
10878
|
+
) -> VideoStream:
|
11231
10879
|
"""
|
11232
10880
|
|
11233
10881
|
Scale the input by 2x using the Super2xSaI pixel art algorithm.
|
@@ -11242,7 +10890,7 @@ class VideoStream(FilterableStream):
|
|
11242
10890
|
filter_node = filter_node_factory(
|
11243
10891
|
FFMpegFilterDef(name="super2xsai", typings_input=("video",), typings_output=("video",)),
|
11244
10892
|
self,
|
11245
|
-
**{} | (extra_options or {})
|
10893
|
+
**{} | (extra_options or {}),
|
11246
10894
|
)
|
11247
10895
|
return filter_node.video(0)
|
11248
10896
|
|
@@ -11257,7 +10905,6 @@ class VideoStream(FilterableStream):
|
|
11257
10905
|
y2: String = Default("0"),
|
11258
10906
|
enable: String = Default(None),
|
11259
10907
|
extra_options: dict[str, Any] = None,
|
11260
|
-
**kwargs: Any,
|
11261
10908
|
) -> VideoStream:
|
11262
10909
|
"""
|
11263
10910
|
|
@@ -11291,13 +10938,15 @@ class VideoStream(FilterableStream):
|
|
11291
10938
|
"y2": y2,
|
11292
10939
|
"enable": enable,
|
11293
10940
|
}
|
11294
|
-
| (extra_options or {})
|
11295
|
-
| kwargs,
|
10941
|
+
| (extra_options or {}),
|
11296
10942
|
)
|
11297
10943
|
return filter_node.video(0)
|
11298
10944
|
|
11299
10945
|
def swapuv(
|
11300
|
-
self,
|
10946
|
+
self,
|
10947
|
+
*,
|
10948
|
+
enable: String = Default(None),
|
10949
|
+
extra_options: dict[str, Any] = None,
|
11301
10950
|
) -> VideoStream:
|
11302
10951
|
"""
|
11303
10952
|
|
@@ -11319,8 +10968,7 @@ class VideoStream(FilterableStream):
|
|
11319
10968
|
**{
|
11320
10969
|
"enable": enable,
|
11321
10970
|
}
|
11322
|
-
| (extra_options or {})
|
11323
|
-
| kwargs,
|
10971
|
+
| (extra_options or {}),
|
11324
10972
|
)
|
11325
10973
|
return filter_node.video(0)
|
11326
10974
|
|
@@ -11569,7 +11217,6 @@ class VideoStream(FilterableStream):
|
|
11569
11217
|
all_opacity: Double = Default(1.0),
|
11570
11218
|
enable: String = Default(None),
|
11571
11219
|
extra_options: dict[str, Any] = None,
|
11572
|
-
**kwargs: Any,
|
11573
11220
|
) -> VideoStream:
|
11574
11221
|
"""
|
11575
11222
|
|
@@ -11621,8 +11268,7 @@ class VideoStream(FilterableStream):
|
|
11621
11268
|
"all_opacity": all_opacity,
|
11622
11269
|
"enable": enable,
|
11623
11270
|
}
|
11624
|
-
| (extra_options or {})
|
11625
|
-
| kwargs,
|
11271
|
+
| (extra_options or {}),
|
11626
11272
|
)
|
11627
11273
|
return filter_node.video(0)
|
11628
11274
|
|
@@ -11632,7 +11278,6 @@ class VideoStream(FilterableStream):
|
|
11632
11278
|
first_field: Int | Literal["top", "t", "bottom", "b"] | Default = Default("top"),
|
11633
11279
|
pattern: String = Default("23"),
|
11634
11280
|
extra_options: dict[str, Any] = None,
|
11635
|
-
**kwargs: Any,
|
11636
11281
|
) -> VideoStream:
|
11637
11282
|
"""
|
11638
11283
|
|
@@ -11656,8 +11301,7 @@ class VideoStream(FilterableStream):
|
|
11656
11301
|
"first_field": first_field,
|
11657
11302
|
"pattern": pattern,
|
11658
11303
|
}
|
11659
|
-
| (extra_options or {})
|
11660
|
-
| kwargs,
|
11304
|
+
| (extra_options or {}),
|
11661
11305
|
)
|
11662
11306
|
return filter_node.video(0)
|
11663
11307
|
|
@@ -11673,7 +11317,6 @@ class VideoStream(FilterableStream):
|
|
11673
11317
|
ecolor: Color = Default("gold"),
|
11674
11318
|
slide: Int | Literal["frame", "replace", "scroll", "rscroll", "picture"] | Default = Default("replace"),
|
11675
11319
|
extra_options: dict[str, Any] = None,
|
11676
|
-
**kwargs: Any,
|
11677
11320
|
) -> VideoStream:
|
11678
11321
|
"""
|
11679
11322
|
|
@@ -11709,8 +11352,7 @@ class VideoStream(FilterableStream):
|
|
11709
11352
|
"ecolor": ecolor,
|
11710
11353
|
"slide": slide,
|
11711
11354
|
}
|
11712
|
-
| (extra_options or {})
|
11713
|
-
| kwargs,
|
11355
|
+
| (extra_options or {}),
|
11714
11356
|
)
|
11715
11357
|
return filter_node.video(0)
|
11716
11358
|
|
@@ -11723,7 +11365,6 @@ class VideoStream(FilterableStream):
|
|
11723
11365
|
planes: Int = Default(15),
|
11724
11366
|
enable: String = Default(None),
|
11725
11367
|
extra_options: dict[str, Any] = None,
|
11726
|
-
**kwargs: Any,
|
11727
11368
|
) -> VideoStream:
|
11728
11369
|
"""
|
11729
11370
|
|
@@ -11752,8 +11393,7 @@ class VideoStream(FilterableStream):
|
|
11752
11393
|
"planes": planes,
|
11753
11394
|
"enable": enable,
|
11754
11395
|
}
|
11755
|
-
| (extra_options or {})
|
11756
|
-
| kwargs,
|
11396
|
+
| (extra_options or {}),
|
11757
11397
|
)
|
11758
11398
|
return filter_node.video(0)
|
11759
11399
|
|
@@ -11764,7 +11404,6 @@ class VideoStream(FilterableStream):
|
|
11764
11404
|
log: Int | Literal["quiet", "info", "verbose"] | Default = Default("info"),
|
11765
11405
|
enable: String = Default(None),
|
11766
11406
|
extra_options: dict[str, Any] = None,
|
11767
|
-
**kwargs: Any,
|
11768
11407
|
) -> VideoStream:
|
11769
11408
|
"""
|
11770
11409
|
|
@@ -11790,8 +11429,7 @@ class VideoStream(FilterableStream):
|
|
11790
11429
|
"log": log,
|
11791
11430
|
"enable": enable,
|
11792
11431
|
}
|
11793
|
-
| (extra_options or {})
|
11794
|
-
| kwargs,
|
11432
|
+
| (extra_options or {}),
|
11795
11433
|
)
|
11796
11434
|
return filter_node.video(0)
|
11797
11435
|
|
@@ -11806,7 +11444,6 @@ class VideoStream(FilterableStream):
|
|
11806
11444
|
overlap: Int = Default(0),
|
11807
11445
|
init_padding: Int = Default(0),
|
11808
11446
|
extra_options: dict[str, Any] = None,
|
11809
|
-
**kwargs: Any,
|
11810
11447
|
) -> VideoStream:
|
11811
11448
|
"""
|
11812
11449
|
|
@@ -11840,8 +11477,7 @@ class VideoStream(FilterableStream):
|
|
11840
11477
|
"overlap": overlap,
|
11841
11478
|
"init_padding": init_padding,
|
11842
11479
|
}
|
11843
|
-
| (extra_options or {})
|
11844
|
-
| kwargs,
|
11480
|
+
| (extra_options or {}),
|
11845
11481
|
)
|
11846
11482
|
return filter_node.video(0)
|
11847
11483
|
|
@@ -11854,7 +11490,6 @@ class VideoStream(FilterableStream):
|
|
11854
11490
|
]
|
11855
11491
|
| Default = Default("merge"),
|
11856
11492
|
extra_options: dict[str, Any] = None,
|
11857
|
-
**kwargs: Any,
|
11858
11493
|
) -> VideoStream:
|
11859
11494
|
"""
|
11860
11495
|
|
@@ -11876,8 +11511,7 @@ class VideoStream(FilterableStream):
|
|
11876
11511
|
**{
|
11877
11512
|
"mode": mode,
|
11878
11513
|
}
|
11879
|
-
| (extra_options or {})
|
11880
|
-
| kwargs,
|
11514
|
+
| (extra_options or {}),
|
11881
11515
|
)
|
11882
11516
|
return filter_node.video(0)
|
11883
11517
|
|
@@ -11890,7 +11524,6 @@ class VideoStream(FilterableStream):
|
|
11890
11524
|
c3: String = Default("x"),
|
11891
11525
|
enable: String = Default(None),
|
11892
11526
|
extra_options: dict[str, Any] = None,
|
11893
|
-
**kwargs: Any,
|
11894
11527
|
) -> VideoStream:
|
11895
11528
|
"""
|
11896
11529
|
|
@@ -11920,8 +11553,7 @@ class VideoStream(FilterableStream):
|
|
11920
11553
|
"c3": c3,
|
11921
11554
|
"enable": enable,
|
11922
11555
|
}
|
11923
|
-
| (extra_options or {})
|
11924
|
-
| kwargs,
|
11556
|
+
| (extra_options or {}),
|
11925
11557
|
)
|
11926
11558
|
return filter_node.video(0)
|
11927
11559
|
|
@@ -11933,7 +11565,6 @@ class VideoStream(FilterableStream):
|
|
11933
11565
|
percentile: Float = Default(0.5),
|
11934
11566
|
enable: String = Default(None),
|
11935
11567
|
extra_options: dict[str, Any] = None,
|
11936
|
-
**kwargs: Any,
|
11937
11568
|
) -> VideoStream:
|
11938
11569
|
"""
|
11939
11570
|
|
@@ -11961,8 +11592,7 @@ class VideoStream(FilterableStream):
|
|
11961
11592
|
"percentile": percentile,
|
11962
11593
|
"enable": enable,
|
11963
11594
|
}
|
11964
|
-
| (extra_options or {})
|
11965
|
-
| kwargs,
|
11595
|
+
| (extra_options or {}),
|
11966
11596
|
)
|
11967
11597
|
return filter_node.video(0)
|
11968
11598
|
|
@@ -11974,7 +11604,6 @@ class VideoStream(FilterableStream):
|
|
11974
11604
|
planes: Int = Default(15),
|
11975
11605
|
enable: String = Default(None),
|
11976
11606
|
extra_options: dict[str, Any] = None,
|
11977
|
-
**kwargs: Any,
|
11978
11607
|
) -> VideoStream:
|
11979
11608
|
"""
|
11980
11609
|
|
@@ -12002,8 +11631,7 @@ class VideoStream(FilterableStream):
|
|
12002
11631
|
"planes": planes,
|
12003
11632
|
"enable": enable,
|
12004
11633
|
}
|
12005
|
-
| (extra_options or {})
|
12006
|
-
| kwargs,
|
11634
|
+
| (extra_options or {}),
|
12007
11635
|
)
|
12008
11636
|
return filter_node.video(0)
|
12009
11637
|
|
@@ -12016,7 +11644,6 @@ class VideoStream(FilterableStream):
|
|
12016
11644
|
planes: Flags = Default("F"),
|
12017
11645
|
enable: String = Default(None),
|
12018
11646
|
extra_options: dict[str, Any] = None,
|
12019
|
-
**kwargs: Any,
|
12020
11647
|
) -> VideoStream:
|
12021
11648
|
"""
|
12022
11649
|
|
@@ -12046,8 +11673,7 @@ class VideoStream(FilterableStream):
|
|
12046
11673
|
"planes": planes,
|
12047
11674
|
"enable": enable,
|
12048
11675
|
}
|
12049
|
-
| (extra_options or {})
|
12050
|
-
| kwargs,
|
11676
|
+
| (extra_options or {}),
|
12051
11677
|
)
|
12052
11678
|
return filter_node.video(0)
|
12053
11679
|
|
@@ -12061,7 +11687,6 @@ class VideoStream(FilterableStream):
|
|
12061
11687
|
desat: Double = Default(2.0),
|
12062
11688
|
peak: Double = Default(0.0),
|
12063
11689
|
extra_options: dict[str, Any] = None,
|
12064
|
-
**kwargs: Any,
|
12065
11690
|
) -> VideoStream:
|
12066
11691
|
"""
|
12067
11692
|
|
@@ -12089,8 +11714,7 @@ class VideoStream(FilterableStream):
|
|
12089
11714
|
"desat": desat,
|
12090
11715
|
"peak": peak,
|
12091
11716
|
}
|
12092
|
-
| (extra_options or {})
|
12093
|
-
| kwargs,
|
11717
|
+
| (extra_options or {}),
|
12094
11718
|
)
|
12095
11719
|
return filter_node.video(0)
|
12096
11720
|
|
@@ -12105,7 +11729,6 @@ class VideoStream(FilterableStream):
|
|
12105
11729
|
stop_duration: Duration = Default(0.0),
|
12106
11730
|
color: Color = Default("black"),
|
12107
11731
|
extra_options: dict[str, Any] = None,
|
12108
|
-
**kwargs: Any,
|
12109
11732
|
) -> VideoStream:
|
12110
11733
|
"""
|
12111
11734
|
|
@@ -12139,8 +11762,7 @@ class VideoStream(FilterableStream):
|
|
12139
11762
|
"stop_duration": stop_duration,
|
12140
11763
|
"color": color,
|
12141
11764
|
}
|
12142
|
-
| (extra_options or {})
|
12143
|
-
| kwargs,
|
11765
|
+
| (extra_options or {}),
|
12144
11766
|
)
|
12145
11767
|
return filter_node.video(0)
|
12146
11768
|
|
@@ -12150,7 +11772,6 @@ class VideoStream(FilterableStream):
|
|
12150
11772
|
dir: Int | Literal["cclock_flip", "clock", "cclock", "clock_flip"] | Default = Default("cclock_flip"),
|
12151
11773
|
passthrough: Int | Literal["none", "portrait", "landscape"] | Default = Default("none"),
|
12152
11774
|
extra_options: dict[str, Any] = None,
|
12153
|
-
**kwargs: Any,
|
12154
11775
|
) -> VideoStream:
|
12155
11776
|
"""
|
12156
11777
|
|
@@ -12174,8 +11795,7 @@ class VideoStream(FilterableStream):
|
|
12174
11795
|
"dir": dir,
|
12175
11796
|
"passthrough": passthrough,
|
12176
11797
|
}
|
12177
|
-
| (extra_options or {})
|
12178
|
-
| kwargs,
|
11798
|
+
| (extra_options or {}),
|
12179
11799
|
)
|
12180
11800
|
return filter_node.video(0)
|
12181
11801
|
|
@@ -12187,7 +11807,6 @@ class VideoStream(FilterableStream):
|
|
12187
11807
|
| Default = Default("cclock_flip"),
|
12188
11808
|
passthrough: Int | Literal["none", "portrait", "landscape"] | Default = Default("none"),
|
12189
11809
|
extra_options: dict[str, Any] = None,
|
12190
|
-
**kwargs: Any,
|
12191
11810
|
) -> VideoStream:
|
12192
11811
|
"""
|
12193
11812
|
|
@@ -12211,8 +11830,7 @@ class VideoStream(FilterableStream):
|
|
12211
11830
|
"dir": dir,
|
12212
11831
|
"passthrough": passthrough,
|
12213
11832
|
}
|
12214
|
-
| (extra_options or {})
|
12215
|
-
| kwargs,
|
11833
|
+
| (extra_options or {}),
|
12216
11834
|
)
|
12217
11835
|
return filter_node.video(0)
|
12218
11836
|
|
@@ -12227,7 +11845,6 @@ class VideoStream(FilterableStream):
|
|
12227
11845
|
start_frame: Int64 = Default(-1),
|
12228
11846
|
end_frame: Int64 = Default("I64_MAX"),
|
12229
11847
|
extra_options: dict[str, Any] = None,
|
12230
|
-
**kwargs: Any,
|
12231
11848
|
) -> VideoStream:
|
12232
11849
|
"""
|
12233
11850
|
|
@@ -12261,8 +11878,7 @@ class VideoStream(FilterableStream):
|
|
12261
11878
|
"start_frame": start_frame,
|
12262
11879
|
"end_frame": end_frame,
|
12263
11880
|
}
|
12264
|
-
| (extra_options or {})
|
12265
|
-
| kwargs,
|
11881
|
+
| (extra_options or {}),
|
12266
11882
|
)
|
12267
11883
|
return filter_node.video(0)
|
12268
11884
|
|
@@ -12280,7 +11896,6 @@ class VideoStream(FilterableStream):
|
|
12280
11896
|
alpha_amount: Float = Default(0.0),
|
12281
11897
|
enable: String = Default(None),
|
12282
11898
|
extra_options: dict[str, Any] = None,
|
12283
|
-
**kwargs: Any,
|
12284
11899
|
) -> VideoStream:
|
12285
11900
|
"""
|
12286
11901
|
|
@@ -12320,13 +11935,15 @@ class VideoStream(FilterableStream):
|
|
12320
11935
|
"alpha_amount": alpha_amount,
|
12321
11936
|
"enable": enable,
|
12322
11937
|
}
|
12323
|
-
| (extra_options or {})
|
12324
|
-
| kwargs,
|
11938
|
+
| (extra_options or {}),
|
12325
11939
|
)
|
12326
11940
|
return filter_node.video(0)
|
12327
11941
|
|
12328
11942
|
def untile(
|
12329
|
-
self,
|
11943
|
+
self,
|
11944
|
+
*,
|
11945
|
+
layout: Image_size = Default("6x5"),
|
11946
|
+
extra_options: dict[str, Any] = None,
|
12330
11947
|
) -> VideoStream:
|
12331
11948
|
"""
|
12332
11949
|
|
@@ -12348,8 +11965,7 @@ class VideoStream(FilterableStream):
|
|
12348
11965
|
**{
|
12349
11966
|
"layout": layout,
|
12350
11967
|
}
|
12351
|
-
| (extra_options or {})
|
12352
|
-
| kwargs,
|
11968
|
+
| (extra_options or {}),
|
12353
11969
|
)
|
12354
11970
|
return filter_node.video(0)
|
12355
11971
|
|
@@ -12362,7 +11978,6 @@ class VideoStream(FilterableStream):
|
|
12362
11978
|
codec: String = Default("snow"),
|
12363
11979
|
enable: String = Default(None),
|
12364
11980
|
extra_options: dict[str, Any] = None,
|
12365
|
-
**kwargs: Any,
|
12366
11981
|
) -> VideoStream:
|
12367
11982
|
"""
|
12368
11983
|
|
@@ -12392,8 +12007,7 @@ class VideoStream(FilterableStream):
|
|
12392
12007
|
"codec": codec,
|
12393
12008
|
"enable": enable,
|
12394
12009
|
}
|
12395
|
-
| (extra_options or {})
|
12396
|
-
| kwargs,
|
12010
|
+
| (extra_options or {}),
|
12397
12011
|
)
|
12398
12012
|
return filter_node.video(0)
|
12399
12013
|
|
@@ -12519,7 +12133,6 @@ class VideoStream(FilterableStream):
|
|
12519
12133
|
alpha_mask: Boolean = Default(False),
|
12520
12134
|
reset_rot: Boolean = Default(False),
|
12521
12135
|
extra_options: dict[str, Any] = None,
|
12522
|
-
**kwargs: Any,
|
12523
12136
|
) -> VideoStream:
|
12524
12137
|
"""
|
12525
12138
|
|
@@ -12611,8 +12224,7 @@ class VideoStream(FilterableStream):
|
|
12611
12224
|
"alpha_mask": alpha_mask,
|
12612
12225
|
"reset_rot": reset_rot,
|
12613
12226
|
}
|
12614
|
-
| (extra_options or {})
|
12615
|
-
| kwargs,
|
12227
|
+
| (extra_options or {}),
|
12616
12228
|
)
|
12617
12229
|
return filter_node.video(0)
|
12618
12230
|
|
@@ -12627,7 +12239,6 @@ class VideoStream(FilterableStream):
|
|
12627
12239
|
type: Int | Literal["universal", "bayes"] | Default = Default("universal"),
|
12628
12240
|
enable: String = Default(None),
|
12629
12241
|
extra_options: dict[str, Any] = None,
|
12630
|
-
**kwargs: Any,
|
12631
12242
|
) -> VideoStream:
|
12632
12243
|
"""
|
12633
12244
|
|
@@ -12661,8 +12272,7 @@ class VideoStream(FilterableStream):
|
|
12661
12272
|
"type": type,
|
12662
12273
|
"enable": enable,
|
12663
12274
|
}
|
12664
|
-
| (extra_options or {})
|
12665
|
-
| kwargs,
|
12275
|
+
| (extra_options or {}),
|
12666
12276
|
)
|
12667
12277
|
return filter_node.video(0)
|
12668
12278
|
|
@@ -12679,7 +12289,6 @@ class VideoStream(FilterableStream):
|
|
12679
12289
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
12680
12290
|
enable: String = Default(None),
|
12681
12291
|
extra_options: dict[str, Any] = None,
|
12682
|
-
**kwargs: Any,
|
12683
12292
|
) -> VideoStream:
|
12684
12293
|
"""
|
12685
12294
|
|
@@ -12716,8 +12325,7 @@ class VideoStream(FilterableStream):
|
|
12716
12325
|
"ts_sync_mode": ts_sync_mode,
|
12717
12326
|
"enable": enable,
|
12718
12327
|
}
|
12719
|
-
| (extra_options or {})
|
12720
|
-
| kwargs,
|
12328
|
+
| (extra_options or {}),
|
12721
12329
|
)
|
12722
12330
|
return filter_node.video(0)
|
12723
12331
|
|
@@ -12741,7 +12349,6 @@ class VideoStream(FilterableStream):
|
|
12741
12349
|
tint0: Float = Default(0.0),
|
12742
12350
|
tint1: Float = Default(0.0),
|
12743
12351
|
extra_options: dict[str, Any] = None,
|
12744
|
-
**kwargs: Any,
|
12745
12352
|
) -> VideoStream:
|
12746
12353
|
"""
|
12747
12354
|
|
@@ -12789,13 +12396,15 @@ class VideoStream(FilterableStream):
|
|
12789
12396
|
"tint0": tint0,
|
12790
12397
|
"tint1": tint1,
|
12791
12398
|
}
|
12792
|
-
| (extra_options or {})
|
12793
|
-
| kwargs,
|
12399
|
+
| (extra_options or {}),
|
12794
12400
|
)
|
12795
12401
|
return filter_node.video(0)
|
12796
12402
|
|
12797
12403
|
def vflip(
|
12798
|
-
self,
|
12404
|
+
self,
|
12405
|
+
*,
|
12406
|
+
enable: String = Default(None),
|
12407
|
+
extra_options: dict[str, Any] = None,
|
12799
12408
|
) -> VideoStream:
|
12800
12409
|
"""
|
12801
12410
|
|
@@ -12817,12 +12426,14 @@ class VideoStream(FilterableStream):
|
|
12817
12426
|
**{
|
12818
12427
|
"enable": enable,
|
12819
12428
|
}
|
12820
|
-
| (extra_options or {})
|
12821
|
-
| kwargs,
|
12429
|
+
| (extra_options or {}),
|
12822
12430
|
)
|
12823
12431
|
return filter_node.video(0)
|
12824
12432
|
|
12825
|
-
def vfrdet(
|
12433
|
+
def vfrdet(
|
12434
|
+
self,
|
12435
|
+
extra_options: dict[str, Any] = None,
|
12436
|
+
) -> VideoStream:
|
12826
12437
|
"""
|
12827
12438
|
|
12828
12439
|
Variable frame rate detect filter.
|
@@ -12837,7 +12448,7 @@ class VideoStream(FilterableStream):
|
|
12837
12448
|
filter_node = filter_node_factory(
|
12838
12449
|
FFMpegFilterDef(name="vfrdet", typings_input=("video",), typings_output=("video",)),
|
12839
12450
|
self,
|
12840
|
-
**{} | (extra_options or {})
|
12451
|
+
**{} | (extra_options or {}),
|
12841
12452
|
)
|
12842
12453
|
return filter_node.video(0)
|
12843
12454
|
|
@@ -12854,7 +12465,6 @@ class VideoStream(FilterableStream):
|
|
12854
12465
|
alternate: Boolean = Default(False),
|
12855
12466
|
enable: String = Default(None),
|
12856
12467
|
extra_options: dict[str, Any] = None,
|
12857
|
-
**kwargs: Any,
|
12858
12468
|
) -> VideoStream:
|
12859
12469
|
"""
|
12860
12470
|
|
@@ -12892,8 +12502,7 @@ class VideoStream(FilterableStream):
|
|
12892
12502
|
"alternate": alternate,
|
12893
12503
|
"enable": enable,
|
12894
12504
|
}
|
12895
|
-
| (extra_options or {})
|
12896
|
-
| kwargs,
|
12505
|
+
| (extra_options or {}),
|
12897
12506
|
)
|
12898
12507
|
return filter_node.video(0)
|
12899
12508
|
|
@@ -12909,7 +12518,6 @@ class VideoStream(FilterableStream):
|
|
12909
12518
|
tripod: Int = Default(0),
|
12910
12519
|
fileformat: Int | Literal["ascii", "binary"] | Default = Default("binary"),
|
12911
12520
|
extra_options: dict[str, Any] = None,
|
12912
|
-
**kwargs: Any,
|
12913
12521
|
) -> VideoStream:
|
12914
12522
|
"""
|
12915
12523
|
|
@@ -12945,8 +12553,7 @@ class VideoStream(FilterableStream):
|
|
12945
12553
|
"tripod": tripod,
|
12946
12554
|
"fileformat": fileformat,
|
12947
12555
|
}
|
12948
|
-
| (extra_options or {})
|
12949
|
-
| kwargs,
|
12556
|
+
| (extra_options or {}),
|
12950
12557
|
)
|
12951
12558
|
return filter_node.video(0)
|
12952
12559
|
|
@@ -12968,7 +12575,6 @@ class VideoStream(FilterableStream):
|
|
12968
12575
|
tripod: Boolean = Default(False),
|
12969
12576
|
debug: Boolean = Default(False),
|
12970
12577
|
extra_options: dict[str, Any] = None,
|
12971
|
-
**kwargs: Any,
|
12972
12578
|
) -> VideoStream:
|
12973
12579
|
"""
|
12974
12580
|
|
@@ -13016,8 +12622,7 @@ class VideoStream(FilterableStream):
|
|
13016
12622
|
"tripod": tripod,
|
13017
12623
|
"debug": debug,
|
13018
12624
|
}
|
13019
|
-
| (extra_options or {})
|
13020
|
-
| kwargs,
|
12625
|
+
| (extra_options or {}),
|
13021
12626
|
)
|
13022
12627
|
return filter_node.video(0)
|
13023
12628
|
|
@@ -13031,7 +12636,6 @@ class VideoStream(FilterableStream):
|
|
13031
12636
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
13032
12637
|
enable: String = Default(None),
|
13033
12638
|
extra_options: dict[str, Any] = None,
|
13034
|
-
**kwargs: Any,
|
13035
12639
|
) -> VideoStream:
|
13036
12640
|
"""
|
13037
12641
|
|
@@ -13062,8 +12666,7 @@ class VideoStream(FilterableStream):
|
|
13062
12666
|
"ts_sync_mode": ts_sync_mode,
|
13063
12667
|
"enable": enable,
|
13064
12668
|
}
|
13065
|
-
| (extra_options or {})
|
13066
|
-
| kwargs,
|
12669
|
+
| (extra_options or {}),
|
13067
12670
|
)
|
13068
12671
|
return filter_node.video(0)
|
13069
12672
|
|
@@ -13079,7 +12682,6 @@ class VideoStream(FilterableStream):
|
|
13079
12682
|
aspect: Rational = Default("1/1"),
|
13080
12683
|
enable: String = Default(None),
|
13081
12684
|
extra_options: dict[str, Any] = None,
|
13082
|
-
**kwargs: Any,
|
13083
12685
|
) -> VideoStream:
|
13084
12686
|
"""
|
13085
12687
|
|
@@ -13115,13 +12717,15 @@ class VideoStream(FilterableStream):
|
|
13115
12717
|
"aspect": aspect,
|
13116
12718
|
"enable": enable,
|
13117
12719
|
}
|
13118
|
-
| (extra_options or {})
|
13119
|
-
| kwargs,
|
12720
|
+
| (extra_options or {}),
|
13120
12721
|
)
|
13121
12722
|
return filter_node.video(0)
|
13122
12723
|
|
13123
12724
|
def vmafmotion(
|
13124
|
-
self,
|
12725
|
+
self,
|
12726
|
+
*,
|
12727
|
+
stats_file: String = Default(None),
|
12728
|
+
extra_options: dict[str, Any] = None,
|
13125
12729
|
) -> VideoStream:
|
13126
12730
|
"""
|
13127
12731
|
|
@@ -13143,8 +12747,7 @@ class VideoStream(FilterableStream):
|
|
13143
12747
|
**{
|
13144
12748
|
"stats_file": stats_file,
|
13145
12749
|
}
|
13146
|
-
| (extra_options or {})
|
13147
|
-
| kwargs,
|
12750
|
+
| (extra_options or {}),
|
13148
12751
|
)
|
13149
12752
|
return filter_node.video(0)
|
13150
12753
|
|
@@ -13157,7 +12760,6 @@ class VideoStream(FilterableStream):
|
|
13157
12760
|
deint: Int | Literal["all", "interlaced"] | Default = Default("all"),
|
13158
12761
|
enable: String = Default(None),
|
13159
12762
|
extra_options: dict[str, Any] = None,
|
13160
|
-
**kwargs: Any,
|
13161
12763
|
) -> VideoStream:
|
13162
12764
|
"""
|
13163
12765
|
|
@@ -13187,8 +12789,7 @@ class VideoStream(FilterableStream):
|
|
13187
12789
|
"deint": deint,
|
13188
12790
|
"enable": enable,
|
13189
12791
|
}
|
13190
|
-
| (extra_options or {})
|
13191
|
-
| kwargs,
|
12792
|
+
| (extra_options or {}),
|
13192
12793
|
)
|
13193
12794
|
return filter_node.video(0)
|
13194
12795
|
|
@@ -13214,7 +12815,6 @@ class VideoStream(FilterableStream):
|
|
13214
12815
|
fitmode: Int | Literal["none", "size"] | Default = Default("none"),
|
13215
12816
|
input: Int | Literal["all", "first"] | Default = Default("first"),
|
13216
12817
|
extra_options: dict[str, Any] = None,
|
13217
|
-
**kwargs: Any,
|
13218
12818
|
) -> VideoStream:
|
13219
12819
|
"""
|
13220
12820
|
|
@@ -13266,8 +12866,7 @@ class VideoStream(FilterableStream):
|
|
13266
12866
|
"fitmode": fitmode,
|
13267
12867
|
"input": input,
|
13268
12868
|
}
|
13269
|
-
| (extra_options or {})
|
13270
|
-
| kwargs,
|
12869
|
+
| (extra_options or {}),
|
13271
12870
|
)
|
13272
12871
|
return filter_node.video(0)
|
13273
12872
|
|
@@ -13276,7 +12875,6 @@ class VideoStream(FilterableStream):
|
|
13276
12875
|
*,
|
13277
12876
|
first_field: Int | Literal["top", "t", "bottom", "b"] | Default = Default("top"),
|
13278
12877
|
extra_options: dict[str, Any] = None,
|
13279
|
-
**kwargs: Any,
|
13280
12878
|
) -> VideoStream:
|
13281
12879
|
"""
|
13282
12880
|
|
@@ -13298,12 +12896,16 @@ class VideoStream(FilterableStream):
|
|
13298
12896
|
**{
|
13299
12897
|
"first_field": first_field,
|
13300
12898
|
}
|
13301
|
-
| (extra_options or {})
|
13302
|
-
| kwargs,
|
12899
|
+
| (extra_options or {}),
|
13303
12900
|
)
|
13304
12901
|
return filter_node.video(0)
|
13305
12902
|
|
13306
|
-
def xbr(
|
12903
|
+
def xbr(
|
12904
|
+
self,
|
12905
|
+
*,
|
12906
|
+
n: Int = Default(3),
|
12907
|
+
extra_options: dict[str, Any] = None,
|
12908
|
+
) -> VideoStream:
|
13307
12909
|
"""
|
13308
12910
|
|
13309
12911
|
Scale the input using xBR algorithm.
|
@@ -13324,8 +12926,7 @@ class VideoStream(FilterableStream):
|
|
13324
12926
|
**{
|
13325
12927
|
"n": n,
|
13326
12928
|
}
|
13327
|
-
| (extra_options or {})
|
13328
|
-
| kwargs,
|
12929
|
+
| (extra_options or {}),
|
13329
12930
|
)
|
13330
12931
|
return filter_node.video(0)
|
13331
12932
|
|
@@ -13341,7 +12942,6 @@ class VideoStream(FilterableStream):
|
|
13341
12942
|
ts_sync_mode: Int | Literal["default", "nearest"] | Default = Default("default"),
|
13342
12943
|
enable: String = Default(None),
|
13343
12944
|
extra_options: dict[str, Any] = None,
|
13344
|
-
**kwargs: Any,
|
13345
12945
|
) -> VideoStream:
|
13346
12946
|
"""
|
13347
12947
|
|
@@ -13376,8 +12976,7 @@ class VideoStream(FilterableStream):
|
|
13376
12976
|
"ts_sync_mode": ts_sync_mode,
|
13377
12977
|
"enable": enable,
|
13378
12978
|
}
|
13379
|
-
| (extra_options or {})
|
13380
|
-
| kwargs,
|
12979
|
+
| (extra_options or {}),
|
13381
12980
|
)
|
13382
12981
|
return filter_node.video(0)
|
13383
12982
|
|
@@ -13452,7 +13051,6 @@ class VideoStream(FilterableStream):
|
|
13452
13051
|
offset: Duration = Default(0.0),
|
13453
13052
|
expr: String = Default(None),
|
13454
13053
|
extra_options: dict[str, Any] = None,
|
13455
|
-
**kwargs: Any,
|
13456
13054
|
) -> VideoStream:
|
13457
13055
|
"""
|
13458
13056
|
|
@@ -13481,8 +13079,7 @@ class VideoStream(FilterableStream):
|
|
13481
13079
|
"offset": offset,
|
13482
13080
|
"expr": expr,
|
13483
13081
|
}
|
13484
|
-
| (extra_options or {})
|
13485
|
-
| kwargs,
|
13082
|
+
| (extra_options or {}),
|
13486
13083
|
)
|
13487
13084
|
return filter_node.video(0)
|
13488
13085
|
|
@@ -13496,7 +13093,6 @@ class VideoStream(FilterableStream):
|
|
13496
13093
|
deint: Int | Literal["all", "interlaced"] | Default = Default("all"),
|
13497
13094
|
enable: String = Default(None),
|
13498
13095
|
extra_options: dict[str, Any] = None,
|
13499
|
-
**kwargs: Any,
|
13500
13096
|
) -> VideoStream:
|
13501
13097
|
"""
|
13502
13098
|
|
@@ -13524,8 +13120,7 @@ class VideoStream(FilterableStream):
|
|
13524
13120
|
"deint": deint,
|
13525
13121
|
"enable": enable,
|
13526
13122
|
}
|
13527
|
-
| (extra_options or {})
|
13528
|
-
| kwargs,
|
13123
|
+
| (extra_options or {}),
|
13529
13124
|
)
|
13530
13125
|
return filter_node.video(0)
|
13531
13126
|
|
@@ -13537,7 +13132,6 @@ class VideoStream(FilterableStream):
|
|
13537
13132
|
sigma: Int = Default(128),
|
13538
13133
|
enable: String = Default(None),
|
13539
13134
|
extra_options: dict[str, Any] = None,
|
13540
|
-
**kwargs: Any,
|
13541
13135
|
) -> VideoStream:
|
13542
13136
|
"""
|
13543
13137
|
|
@@ -13565,13 +13159,15 @@ class VideoStream(FilterableStream):
|
|
13565
13159
|
"sigma": sigma,
|
13566
13160
|
"enable": enable,
|
13567
13161
|
}
|
13568
|
-
| (extra_options or {})
|
13569
|
-
| kwargs,
|
13162
|
+
| (extra_options or {}),
|
13570
13163
|
)
|
13571
13164
|
return filter_node.video(0)
|
13572
13165
|
|
13573
13166
|
def zmq(
|
13574
|
-
self,
|
13167
|
+
self,
|
13168
|
+
*,
|
13169
|
+
bind_address: String = Default("tcp://*:5555"),
|
13170
|
+
extra_options: dict[str, Any] = None,
|
13575
13171
|
) -> VideoStream:
|
13576
13172
|
"""
|
13577
13173
|
|
@@ -13593,8 +13189,7 @@ class VideoStream(FilterableStream):
|
|
13593
13189
|
**{
|
13594
13190
|
"bind_address": bind_address,
|
13595
13191
|
}
|
13596
|
-
| (extra_options or {})
|
13597
|
-
| kwargs,
|
13192
|
+
| (extra_options or {}),
|
13598
13193
|
)
|
13599
13194
|
return filter_node.video(0)
|
13600
13195
|
|
@@ -13608,7 +13203,6 @@ class VideoStream(FilterableStream):
|
|
13608
13203
|
s: Image_size = Default("hd720"),
|
13609
13204
|
fps: Video_rate = Default("25"),
|
13610
13205
|
extra_options: dict[str, Any] = None,
|
13611
|
-
**kwargs: Any,
|
13612
13206
|
) -> VideoStream:
|
13613
13207
|
"""
|
13614
13208
|
|
@@ -13640,8 +13234,7 @@ class VideoStream(FilterableStream):
|
|
13640
13234
|
"s": s,
|
13641
13235
|
"fps": fps,
|
13642
13236
|
}
|
13643
|
-
| (extra_options or {})
|
13644
|
-
| kwargs,
|
13237
|
+
| (extra_options or {}),
|
13645
13238
|
)
|
13646
13239
|
return filter_node.video(0)
|
13647
13240
|
|
@@ -13814,7 +13407,6 @@ class VideoStream(FilterableStream):
|
|
13814
13407
|
param_a: Double = Default("nan"),
|
13815
13408
|
param_b: Double = Default("nan"),
|
13816
13409
|
extra_options: dict[str, Any] = None,
|
13817
|
-
**kwargs: Any,
|
13818
13410
|
) -> VideoStream:
|
13819
13411
|
"""
|
13820
13412
|
|
@@ -13872,7 +13464,6 @@ class VideoStream(FilterableStream):
|
|
13872
13464
|
"param_a": param_a,
|
13873
13465
|
"param_b": param_b,
|
13874
13466
|
}
|
13875
|
-
| (extra_options or {})
|
13876
|
-
| kwargs,
|
13467
|
+
| (extra_options or {}),
|
13877
13468
|
)
|
13878
13469
|
return filter_node.video(0)
|