forked from info-beamer/package-livestream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.json
61 lines (60 loc) · 1.57 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
{
"name": "Livestream (no-aspect)",
"control_ui": "control.html",
"permissions": {
"network": "Needs to access stream"
},
"options": [{
"title": "Channels",
"type": "section"
}, {
"title": "Channels",
"name": "channels",
"type": "list",
"itemname": "Stream",
"items": [{
"title": "Stream Name",
"ui_width": 4,
"name": "name",
"type": "string",
"default": "My stream"
}, {
"title": "Stream url (e.g. twitch.tv/<xyz>)",
"ui_width": 8,
"name": "url",
"type": "string",
"default": ""
}],
"default": [{
"name": "Elevate Festival Livestream",
"url": "https://emc-live.elev8.at:8000/hls/index.m3u8"
}]
},
{
"title": "Misc",
"type": "section"
}, {
"title": "Logo",
"ui_width": 4,
"name": "logo",
"type": "resource",
"valid": ["image"],
"default": "package.png"
}, {
"title": "Audio",
"ui_width": 2,
"name": "audio",
"type": "boolean",
"default": true
}, {
"title": "Remote control channel switching",
"ui_width": 6,
"name": "cec_mapping",
"type": "select",
"options": [
[["channel-up", "channel-down"], "Using channel buttons (default)"],
[["up", "right"], "Up/right (for some odd TVs)"]
],
"default": ["channel-up", "channel-down"]
}]
}