-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnode.json
46 lines (46 loc) · 1.37 KB
/
node.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
{
"name": "Dual Player",
"options": [{
"title": "Playlist Left",
"name": "playlist_1",
"type": "list",
"itemname": "Item",
"items": [{
"title": "Asset",
"ui_width": 8,
"name": "asset",
"type": "resource",
"valid": ["image", "video"],
"features": ["hevc", "image4k"],
"default": "empty.png"
}, {
"title": "Play time (in seconds)",
"ui_width": 4,
"name": "duration",
"type": "duration",
"hint": "How long should this item be displayed on screen. For videos, use their duration",
"default": 5
}]
}, {
"title": "Playlist Right",
"name": "playlist_2",
"type": "list",
"itemname": "Item",
"items": [{
"title": "Asset",
"ui_width": 8,
"name": "asset",
"type": "resource",
"valid": ["image", "video"],
"features": ["hevc", "image4k"],
"default": "empty.png"
}, {
"title": "Play time (in seconds)",
"ui_width": 4,
"name": "duration",
"type": "duration",
"hint": "How long should this item be displayed on screen. For videos, use their duration",
"default": 5
}]
}]
}