forked from geekscape/aiko_services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
video_to_images.json
48 lines (48 loc) · 915 Bytes
/
video_to_images.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"pipeline_definition": [
{
"name": "VideoReadFile",
"module": "aiko_services.elements.video_io",
"successors": [
"ImageOverlay"
],
"parameters": {
"video_pathname": "astra_brief.mp4"
}
},
{
"name": "ImageOverlay",
"module": "aiko_services.elements.image_io",
"successors": [
"ImageWriteFile"
],
"parameters": {
"colors": {
"astra": [
100,
0,
0
],
"bailey": [
0,
100,
0
],
"ty": [
0,
0,
100
]
},
"text_color": "yellow"
}
},
{
"name": "ImageWriteFile",
"module": "aiko_services.elements.image_io",
"parameters": {
"image_pathname": "z_output/image_{:06d}.jpg"
}
}
]
}