-
Notifications
You must be signed in to change notification settings - Fork 1
/
mpcparty.cfg.example
78 lines (67 loc) · 2.27 KB
/
mpcparty.cfg.example
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
### To set custom config:
### Remove the "#" before a variable, for example:
### "#port = 8080" to "port = 8080"
### Note to Windows users: you need to use "\\" for folder separators.
###
### You can also use environment variables if you prefer.
### Environment variables are listed with the settings below.
[server]
### The web port to be used.
### Env var: SEVER_PORT
### Default: 8081
#port = 8080
[mpd]
### The MPD location.
### Env var: MPD_URL
### Default: "localhost"
#url = "mpdserver.lan"
### The MPD port of the url
### Env var: MPD_PORT
### Default: 6600
#port = 6600
### The music library location that MPD also uses. This is used for extra
### features such as music downloading and album art detection.
### Env var: MPD_LIBRARY
### Default: ""
#library = "~/Music"
[vote]
### Enable vote skipping (set to false if you are having issues with voting)
### Env var: VOTE_ENABLED
### Default: true
#enabled = false
### Vote skipping percentage. 0.75 = 3/4 clients need to vote in order for a
### skip to be successful
### Env var: VOTE_PERCENT
### Default: 0.75
#percent = 0.50
[users]
### Show user lists to clients (shows hostnames via DNS if possible). This may
### be "removed" in the future if support for sharing the playlist editor is
### added, in which case you would disable sharing of the playlist editor.
### Env var: USERS_ENABLED
### Default: false
#enabled = true
[downloader]
### Enable the Downloader (note: "library" needs to be set for this to actually
### be enabled)
### Env var: DOWNLOADER_ENABLED
### Default: true
#enabled = false
### Set the Downloader download location for the clients RELATIVE to the
### MPD library location. Note: Having ".." in the name is possible. Make sure
### your permissions are properly set on your system!
### Env var: DOWNLOADER_DIRECTORY
### Default: "Downloads"
#directory = ""
### Set whether or not to keep the downloaded videos after conversion to mp3.
### If you are changing the "location" you may want to set this to false.
### Note that setting this to false will download videos even when there are
### duplicates.
### Env var: DOWNLOADER_KEEP_VIDEOS
### Default: false
#keep_videos = true
[testing]
# Used for unit testing. This should only be enabled during development.
### Env var: TESTING_ENABLED
### Default: false
#enabled = true