-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.template.json
68 lines (59 loc) · 1.42 KB
/
config.template.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
{
"common": {
"format": {
"sampleRate": "44100",
"channels" : "2"
}
},
"input": {
"device" : "hw:0,0",
"silentFrames" : 325,
"format": {
"bitDepth" : "16"
}
},
"stream": {
"metadata": {
"name" : "Riverside Radio",
"description" : "Switch On SW London",
"genre" : "Community",
"url" : "http://www.riversideradio.com/"
},
"server": {
"host" : "localhost",
"port" : 8000,
"user" : "source",
"password" : "hackme",
"mount" : "stream"
},
"format": {
"bitrate" : "128"
}
},
"recorder": {
"minsPast": [0, 30],
"output": {
"directory" : "/recordings",
"bleed" : 2,
"keepFor" : "30d"
},
"format": {
"lossless" : false,
"bitrate" : "320"
}
},
"mail": {
"host": "smtp.example.com",
"port": 465,
"name": "Stream",
"addr": "[email protected]",
"auth": {
"user": "[email protected]",
"pass": "hackme"
},
"recipients": [
]
}
}