diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-05-23 00:45:31 +0200 | 
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-05-23 00:45:31 +0200 | 
| commit | 7309f597c4e2023026be748dc01caacc44c76242 (patch) | |
| tree | 06448c016227894536ee65cc51d84533a0ed7615 | |
| parent | c16934898bd9c47bbee25eab9bd64c648cdf8ea6 (diff) | |
added http playback to mpd
| -rw-r--r-- | config/common/mpd/mpd.conf | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/config/common/mpd/mpd.conf b/config/common/mpd/mpd.conf index 4e047ba..7ea7137 100644 --- a/config/common/mpd/mpd.conf +++ b/config/common/mpd/mpd.conf @@ -10,3 +10,11 @@ audio_output {  	type "pulse"  	name "pulse audio"  } + +audio_output { +	type		"httpd" +	name		"My HTTP Stream" +	port		"8000" +	always_on       "yes"			# prevent MPD from disconnecting all listeners when playback is stopped. +	tags            "yes"			# httpd supports sending tags to listening streams. +}  | 
