-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodule-name-specs.json
More file actions
50 lines (50 loc) · 1.05 KB
/
module-name-specs.json
File metadata and controls
50 lines (50 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"id": "template-module",
"name": "Template Module",
"description": "Template module that receives an image, a video and a text, and give everything back as output, but with the text backwords",
"author": "Bruno Jucá",
"email": "brunojuca@ice.ufjf.br",
"input_queue": "template-module-python-in",
"output_queue": "template-module-python-out",
"input": [
{
"id": "input-image",
"link": true,
"type": "file",
"required": true,
"accept": ["video/mp4"]
},
{
"id": "input-video",
"link": true,
"type": "file",
"required": true,
"accept": ["video/mp4"]
},
{
"id": "input-text",
"link": false,
"type": "text",
"required": true
}
],
"output": [
{
"id": "echo-image",
"link": true,
"type": "file",
"accept": ["video/mp4"]
},
{
"id": "echo-video",
"link": true,
"type": "file",
"accept": ["video/mp4"]
},
{
"id": "echo-text",
"link": false,
"type": "text"
}
]
}