forked from Chinachu/Chinachu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sample.json
83 lines (76 loc) · 2.42 KB
/
config.sample.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"recordedDir" : "./recorded/",
"temporaryDir": "/tmp/",
"wuiUsers": [
"akari:bakuhatsu"
],
"wuiPort" : 10772,
"wuiHost" : "::",
"wuiTlsKeyPath" : null,
"wuiTlsCertPath" : null,
"wuiOpenServer" : false,
"wuiOpenPort" : 20772,
"wuiPreviewer" : true,
"wuiStreamer" : true,
"wuiFiler" : true,
"wuiConfigurator": true,
"recordedFormat": "[<date:yymmdd-HHMM>][<type><channel>][<tuner>]<title>.m2ts",
"tuners": [
{
"name" : "PT3-S1",
"isScrambling": false,
"types" : [ "BS", "CS" ],
"command" : "recpt1 --device /dev/pt3video0 --b25 --strip --sid <sid> <channel> - -"
},
{
"name" : "PT3-S2",
"isScrambling": false,
"types" : [ "BS", "CS" ],
"command" : "recpt1 --device /dev/pt3video1 --b25 --strip --sid <sid> <channel> - -"
},
{
"name" : "PT3-T1",
"isScrambling": false,
"types" : [ "GR" ],
"command" : "recpt1 --device /dev/pt3video2 --b25 --strip --sid <sid> <channel> - -"
},
{
"name" : "PT3-T2",
"isScrambling": false,
"types" : [ "GR" ],
"command" : "recpt1 --device /dev/pt3video3 --b25 --strip --sid <sid> <channel> - -"
},
{
"name" : "FSUSB2",
"isScrambling": false,
"types" : [ "GR" ],
"command" : "recfsusb2n -b <channel> - -"
}
],
"channels": [
{ "type": "GR", "channel": "16" },
{ "type": "GR", "channel": "21" },
{ "type": "GR", "channel": "22" },
{ "type": "GR", "channel": "23" },
{ "type": "GR", "channel": "24" },
{ "type": "GR", "channel": "25" },
{ "type": "GR", "channel": "26" },
{ "type": "GR", "channel": "27" },
{ "type": "BS", "channel": "101" },
{ "type": "BS", "channel": "102" },
{ "type": "BS", "channel": "103" },
{ "type": "BS", "channel": "141" },
{ "type": "BS", "channel": "151" },
{ "type": "BS", "channel": "161" },
{ "type": "BS", "channel": "171" },
{ "type": "BS", "channel": "181" },
{ "type": "BS", "channel": "191" },
{ "type": "BS", "channel": "192" },
{ "type": "BS", "channel": "193" },
{ "type": "BS", "channel": "200" },
{ "type": "BS", "channel": "211" },
{ "type": "BS", "channel": "222" },
{ "type": "CS", "channel": "CS4", "sid": "100" },
{ "type": "CS", "channel": "CS16", "sid": "333" }
]
}