-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
46 lines (46 loc) · 1.37 KB
/
config.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"http_port": 8080,
"https" : {
"enabled" : false,
"port" : 443,
"certfile" : "selfsigned.crt",
"keyfile" : "selfsigned.key"
},
"stream": {
"ws_enabled" : true,
"http_enabled" : true,
"audio_line": "CABLE Output (VB-Audio Virtual Cable)",
"audio_api": "dshow",
"codec": "libmp3lame",
"bitrate": 320,
"format": "mp3"
},
"monitoring": {
"refresh_interval": 45,
"enable_ffmpeg_log": true,
"ffmpeg_log_length": 50,
"screen_max_scrollback": 1000,
"use_ps_fetch": false,
"save_main_log" : true,
"save_ffmpeg_log" : false,
"save_resource_log" : false
},
"meta_infos" : {
"enabled" : true,
"api_url" : "http://localhost:8080/webplayer/metadata.json",
"title_path" : "item.title",
"author_path" : "item.artists[].name",
"album_pic_path" : "item.album.images[].url",
"song_urL_path" : "item.external_urls.spotify",
"artist_url_path" : "item.artists[].external_urls.spotify",
"song_duration_path" : "item.duration_ms",
"song_progress_path" : "progress_ms",
"refresh_interval" : 3,
"max_history_length" : 50,
"static" : {
"enabled" : true,
"writeable" : true,
"pwd" : "Secr3tP@ssword"
}
}
}