This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/dotfiles/mpd.conf

64 lines
1.9 KiB
Plaintext
Raw Normal View History

2021-04-01 18:25:44 +02:00
# {{@@ header() @@}}
#######################################################
# Files and directories
#######################################################
# music_directory "~/Music"
2021-03-09 23:53:26 +01:00
playlist_directory "~/Documents/playlists"
2021-03-05 02:34:08 +01:00
db_file "~/.config/mpd/database"
log_file "syslog"
pid_file "~/.config/mpd/pid"
state_file "~/.config/mpd/state"
2020-06-22 21:06:08 +02:00
2021-04-01 18:25:44 +02:00
#################################################################################
# General music daemon options
#################################################################################
2020-06-22 21:06:08 +02:00
restore_paused "yes"
2021-03-05 02:34:08 +01:00
auto_update "yes"
2020-06-22 21:06:08 +02:00
2021-04-01 18:25:44 +02:00
#################################################################################
# Symbolic link behavior
#################################################################################
2021-03-05 02:34:08 +01:00
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
2020-06-22 21:06:08 +02:00
2021-04-01 18:25:44 +02:00
#################################################################################
# Input
#################################################################################
2020-06-22 21:06:08 +02:00
input {
plugin "curl"
}
2021-04-01 18:25:44 +02:00
#################################################################################
# Audio Output
#################################################################################
2020-06-22 21:06:08 +02:00
audio_output {
2021-03-05 02:34:08 +01:00
type "pulse"
name "My Pulse Output"
2021-02-14 19:28:22 +01:00
mixer_type "hardware"
2020-06-22 21:06:08 +02:00
}
2021-03-05 02:34:08 +01:00
audio_output {
type "fifo"
name "FIFO Output"
path "/tmp/mpd.fifo"
format "44100:16:2"
2020-06-22 21:06:08 +02:00
}
2021-04-01 18:25:44 +02:00
#################################################################################
# Normalization automatic volume adjustments
#################################################################################
2021-03-05 02:34:08 +01:00
volume_normalization "yes"
2020-06-22 21:06:08 +02:00
2021-04-01 18:25:44 +02:00
#################################################################################
# Character Encoding
#################################################################################
2021-03-05 02:34:08 +01:00
filesystem_charset "UTF-8"
# vim: ft=sh