🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-09-10 12:57:58 -04:00
parent 98a665b0dc
commit e50e53fc39
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -10,7 +10,6 @@ user "mpd"
bind_to_address "0.0.0.0" bind_to_address "0.0.0.0"
port "6600" port "6600"
log_level "default" log_level "default"
gapless_mp3_playback "yes"
restore_paused "no" restore_paused "no"
save_absolute_paths_in_playlists "yes" save_absolute_paths_in_playlists "yes"
metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc" metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
@ -22,25 +21,25 @@ zeroconf_enabled "no"
zeroconf_name "mpd server" zeroconf_name "mpd server"
# Character Encoding ########################################################## # Character Encoding ##########################################################
filesystem_charset "UTF-8" filesystem_charset "UTF-8"
id3v1_encoding "UTF-8"
# Input #######################################################################
input {
plugin "curl"
}
# Output ####################################################################### # Output #######################################################################
audio_output { audio_output {
type "httpd" type "httpd"
name "stream" name "stream"
port "8000" encoder "lame"
bitrate "128000" port "8000"
format "48000:16:1" bind_to_address "0.0.0.0"
always_on "yes" bitrate "128000"
tags "yes" format "48000:16:1"
max_clients "0" always_on "yes"
tags "yes"
max_clients "0"
} }
audio_output { audio_output {
type "null" type "null"
name "This server does not need to play music, but it can" name "This server does not need to play music, but it can"
} }
# Input #######################################################################
input {
plugin "curl"
}
############################################################################### ###############################################################################