-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
49 lines (48 loc) · 1.17 KB
/
config.example.json
File metadata and controls
49 lines (48 loc) · 1.17 KB
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
{
"endpoints": [
{
"host": "localhost",
"port": 8000,
"mount": "/stream.mp3",
"username": "source",
"password": "your_source_password",
"stream_name": "My Radio Station",
"bitrate": "128k",
"source_file": "path/to/audio1.mp3",
"protocol": "http"
},
{
"host": "icecast.example.com",
"port": 8000,
"mount": "/live.mp3",
"username": "source",
"password": "another_password",
"stream_name": "Alternative Stream",
"bitrate": "128k",
"source_file": "path/to/audio1.mp3",
"protocol": "https"
},
{
"host": "192.168.1.100",
"port": 8000,
"mount": "/backup.mp3",
"username": "source",
"password": "password123",
"stream_name": "Backup Stream",
"bitrate": "128k",
"source_file": "path/to/audio2.mp3",
"protocol": "http"
},
{
"host": "192.168.1.101",
"port": 8443,
"mount": "/low_quality.mp3",
"username": "source",
"password": "password456",
"stream_name": "Low Quality Stream",
"bitrate": "64k",
"source_file": "path/to/audio2.mp3",
"protocol": "https"
}
]
}