Sfoglia il codice sorgente

working on changes, and debugging

master
Erin Sims 2 anni fa
parent
commit
5598d83f6d
2 ha cambiato i file con 9 aggiunte e 9 eliminazioni
  1. +9
    -8
      playbooks/mpdf.conf.j2
  2. +0
    -1
      playbooks/mpdf.yaml

+ 9
- 8
playbooks/mpdf.conf.j2 Vedi File

@@ -32,7 +32,8 @@ playlist_directory {{ [path,item,playlist_directory]|join() }}
# MPD to accept files over ipc socket (using file:// protocol) or streaming # MPD to accept files over ipc socket (using file:// protocol) or streaming
# files over an accepted protocol. # files over an accepted protocol.
# #
db_file {{ db_file }}
db_file {{ [path,item,db_file]|join() }}

# #
# These settings are the locations for the daemon log files for the daemon. # These settings are the locations for the daemon log files for the daemon.
# These logs are great for troubleshooting, depending on your log_level # These logs are great for troubleshooting, depending on your log_level
@@ -41,27 +42,27 @@ db_file {{ db_file }}
# The special value "syslog" makes MPD use the local syslog daemon. This # The special value "syslog" makes MPD use the local syslog daemon. This
# setting defaults to logging to syslog, otherwise logging is disabled. # setting defaults to logging to syslog, otherwise logging is disabled.
# #
log_file {{ log_file }}
log_file {{ [log_dir,item,log_file]|join() }}
# #
# This setting sets the location of the file which stores the process ID # This setting sets the location of the file which stores the process ID
# for use of mpd --kill and some init scripts. This setting is disabled by # for use of mpd --kill and some init scripts. This setting is disabled by
# default and the pid file will not be stored. # default and the pid file will not be stored.
# #
pid_file {{ pid_file }}
pid_file {{ [path,item,pid_file]|join() }}
# #
# This setting sets the location of the file which contains information about # This setting sets the location of the file which contains information about
# most variables to get MPD back into the same general shape it was in before # most variables to get MPD back into the same general shape it was in before
# it was brought down. This setting is disabled by default and the server # it was brought down. This setting is disabled by default and the server
# state will be reset on server start up. # state will be reset on server start up.
# #
state_file {{ state_file }}
state_file {{ [path,item,state_file]|join() }}


# #
# The location of the sticker database. This is a database which # The location of the sticker database. This is a database which
# manages dynamic information attached to songs. # manages dynamic information attached to songs.
# #
sticker_file {{ sticker_file }}
#
sticker_file {{ [path,item,sticker_file]|join() }}
############################################################################### ###############################################################################




@@ -98,7 +99,7 @@ bind_to_address {{ bind_to_address }}
# to. # to.
# #
#port "6600" #port "6600"
port {{ port }}
port {{ port + item }}


# #
# This setting controls the type of information which is logged. Available # This setting controls the type of information which is logged. Available
@@ -289,7 +290,7 @@ audio_output {
enabled "yes" enabled "yes"
name "{{ stream }}" name "{{ stream }}"
encoder "lame" # optional, vorbis or lame encoder "lame" # optional, vorbis or lame
port "{{ port }}"
port "{{ stream_port + item }}"
bind_to_address "{{ bind_address }}" # optional, IPv4 or IPv6 bind_to_address "{{ bind_address }}" # optional, IPv4 or IPv6
quality "3.0" # do not define if bitrate is defined quality "3.0" # do not define if bitrate is defined
# bitrate "128" # do not define if quality is defined # bitrate "128" # do not define if quality is defined


+ 0
- 1
playbooks/mpdf.yaml Vedi File

@@ -14,7 +14,6 @@
group: nogroup group: nogroup
bind_to_address: any bind_to_address: any
bind_address: any bind_address: any
port_start: 6600
port: 6600 port: 6600
log_level: log_level:
gapless_mp3_playback: yes gapless_mp3_playback: yes


Caricamento…
Annulla
Salva