-
Notifications
You must be signed in to change notification settings - Fork 3
/
node.json
63 lines (62 loc) · 1.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "Playlist Configuration",
"options": [{
"title": "What to display",
"type": "section"
}, {
"title": "Playlist",
"name": "playlist",
"type": "list",
"itemname": "Item",
"items": [{
"title": "Asset",
"ui_width": 9,
"name": "file",
"type": "resource",
"valid": ["image", "video"],
"features": ["hevc", "image4k"],
"default": "empty.png"
}, {
"title": "Play time",
"ui_width": 3,
"name": "duration",
"type": "duration",
"hint": "How long should this item be displayed on screen. For videos, use their duration",
"default": 5
}]
},
{
"title": "Playback settings",
"type": "section"
}, {
"title": "Effect",
"ui_width": 4,
"name": "effect",
"type": "select",
"options": [
["none", "No effect (default)"],
["fade_02", "Fade 0.2s"],
["fade_05", "Fade 0.5s"]
],
"default": "none"
}, {
"title": "Playback mode for videos",
"ui_width": 4,
"name": "video_mode",
"type": "select",
"hint": "Seamless will preload the next video while the current video is playing. This allows seamless transitions between videos. This setting is ignored for HEVC videos as they are always loaded in their playlist slot.",
"options": [
["preload", "Slot load videos"],
["seamless", "Seamless videos"]
],
"default": "preload"
}, {
"title": "Audio support",
"ui_width": 4,
"name": "audio",
"type": "boolean",
"info": "Play audio for all videos",
"doc_link": true,
"default": false
}]
}