diff options
| author | yuzu-eva <stevenhu@web.de> | 2022-12-25 23:27:37 +0100 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2022-12-25 23:27:37 +0100 |
| commit | 66ebf6e1e49075c36ce8e1a3e869985f6b171581 (patch) | |
| tree | 56b0ba5e9655a3c2e4a6d5f92237b1ea390bec53 /.config/mpd | |
| parent | 5da0902c8d705b2ad5c0baa7ff62cb459b02ea5e (diff) | |
added http audio output to mpd
Diffstat (limited to '.config/mpd')
| -rwxr-xr-x | .config/mpd/mpd.conf | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf index f409799..6f04a5d 100755 --- a/.config/mpd/mpd.conf +++ b/.config/mpd/mpd.conf @@ -1,5 +1,5 @@ -bind_to_address "127.0.0.1" -#bind_to_address "/run/mpd/socket" +bind_to_address "0.0.0.0" +#bind_to_address "/run/mpd/socket" music_directory "/media/hdd/music" playlist_directory "~/.config/mpd/playlists" @@ -29,6 +29,16 @@ audio_output { format "44100:16:2" } +audio_output { + type "httpd" + name "My HTTP Stream" + encoder "vorbis" # optional, vorbis or lame + port "8001" + quality "8.0" # do not define if bitrate is defined +# bitrate "256" # do not define if quality is defined + format "44100:16:1" +} + input { enabled "no" plugin "qobuz" @@ -44,3 +54,5 @@ decoder { plugin "wildmidi" config_file "/etc/timidity/timidity.cfg" } + +mixer_type "software" |
