202 lines
6.2 KiB
Diff
202 lines
6.2 KiB
Diff
--- /data/data/com.termux/files/home/MPD-0.20.8.old/doc/mpdconf.example 2017-07-18 12:54:14.570036043 +0200
|
|
+++ ./doc/mpdconf.example 2017-07-18 12:56:34.270035990 +0200
|
|
@@ -10,14 +10,14 @@
|
|
# be disabled and audio files will only be accepted over ipc socket (using
|
|
# file:// protocol) or streaming files over an accepted protocol.
|
|
#
|
|
-#music_directory "~/music"
|
|
+music_directory "/sdcard/Music"
|
|
#
|
|
# This setting sets the MPD internal playlist directory. The purpose of this
|
|
# directory is storage for playlists created by MPD. The server will use
|
|
# playlist files not created by the server but only if they are in the MPD
|
|
# format. This setting defaults to playlist saving being disabled.
|
|
#
|
|
-#playlist_directory "~/.mpd/playlists"
|
|
+playlist_directory "~/.mpd/playlists"
|
|
#
|
|
# This setting sets the location of the MPD database. This file is used to
|
|
# load the database at server start up and store the database while the
|
|
@@ -25,7 +25,7 @@
|
|
# MPD to accept files over ipc socket (using file:// protocol) or streaming
|
|
# files over an accepted protocol.
|
|
#
|
|
-#db_file "~/.mpd/database"
|
|
+db_file "~/.mpd/database"
|
|
#
|
|
# These settings are the locations for the daemon log files for the daemon.
|
|
# These logs are great for troubleshooting, depending on your log_level
|
|
@@ -34,25 +34,25 @@
|
|
# The special value "syslog" makes MPD use the local syslog daemon. This
|
|
# setting defaults to logging to syslog, otherwise logging is disabled.
|
|
#
|
|
-#log_file "~/.mpd/log"
|
|
+#log_file "/data/data/com.termux/files/home/.mpd/log"
|
|
#
|
|
# 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
|
|
# default and the pid file will not be stored.
|
|
#
|
|
-#pid_file "~/.mpd/pid"
|
|
+pid_file "~/.mpd/pid"
|
|
#
|
|
# 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
|
|
# it was brought down. This setting is disabled by default and the server
|
|
# state will be reset on server start up.
|
|
#
|
|
-#state_file "~/.mpd/state"
|
|
+state_file "~/.mpd/state"
|
|
#
|
|
# The location of the sticker database. This is a database which
|
|
# manages dynamic information attached to songs.
|
|
#
|
|
-#sticker_file "~/.mpd/sticker.sql"
|
|
+sticker_file "~/.mpd/sticker.sql"
|
|
#
|
|
###############################################################################
|
|
|
|
@@ -77,17 +77,18 @@
|
|
# should be paid if this is assigned to anything other then the default, any.
|
|
# This setting can deny access to control of the daemon. Not effective if
|
|
# systemd socket activiation is in use.
|
|
-#
|
|
+# For local connections only
|
|
+#bind_to_address "localhost"
|
|
# For network
|
|
#bind_to_address "any"
|
|
#
|
|
# And for Unix Socket
|
|
-#bind_to_address "~/.mpd/socket"
|
|
+bind_to_address "/data/data/com.termux/files/usr/tmp/mpd.socket"
|
|
#
|
|
# This setting is the TCP port that is desired for the daemon to get assigned
|
|
-# to.
|
|
+# to. Normally this is 6600 but for termux this port needs to be above 8000.
|
|
#
|
|
-#port "6600"
|
|
+#port "8600"
|
|
#
|
|
# This setting controls the type of information which is logged. Available
|
|
# setting arguments are "default", "secure" or "verbose". The "verbose" setting
|
|
@@ -137,12 +138,12 @@
|
|
# If this setting is set to "yes", MPD will discover audio files by following
|
|
# symbolic links outside of the configured music_directory.
|
|
#
|
|
-#follow_outside_symlinks "yes"
|
|
+follow_outside_symlinks "yes"
|
|
#
|
|
# If this setting is set to "yes", MPD will discover audio files by following
|
|
# symbolic links inside of the configured music_directory.
|
|
#
|
|
-#follow_inside_symlinks "yes"
|
|
+follow_inside_symlinks "yes"
|
|
#
|
|
###############################################################################
|
|
|
|
@@ -205,28 +206,6 @@
|
|
# blocks. Setting this block is optional, though the server will only attempt
|
|
# autodetection for one sound card.
|
|
#
|
|
-# An example of an ALSA output:
|
|
-#
|
|
-#audio_output {
|
|
-# type "alsa"
|
|
-# name "My ALSA Device"
|
|
-## device "hw:0,0" # optional
|
|
-## mixer_type "hardware" # optional
|
|
-## mixer_device "default" # optional
|
|
-## mixer_control "PCM" # optional
|
|
-## mixer_index "0" # optional
|
|
-#}
|
|
-#
|
|
-# An example of an OSS output:
|
|
-#
|
|
-#audio_output {
|
|
-# type "oss"
|
|
-# name "My OSS Device"
|
|
-## device "/dev/dsp" # optional
|
|
-## mixer_type "hardware" # optional
|
|
-## mixer_device "/dev/mixer" # optional
|
|
-## mixer_control "PCM" # optional
|
|
-#}
|
|
#
|
|
# An example of a shout output (for streaming to Icecast):
|
|
#
|
|
@@ -257,7 +236,8 @@
|
|
# type "recorder"
|
|
# name "My recorder"
|
|
# encoder "vorbis" # optional, vorbis or lame
|
|
-# path "/var/lib/mpd/recorder/mpd.ogg"
|
|
+## for termux changed "path" to somewhere on android that works
|
|
+# path "~/mpd.ogg"
|
|
## quality "5.0" # do not define if bitrate is defined
|
|
# bitrate "128" # do not define if quality is defined
|
|
# format "44100:16:1"
|
|
@@ -286,41 +266,34 @@
|
|
## sink "remote_server_sink" # optional
|
|
#}
|
|
#
|
|
-# An example of a winmm output (Windows multimedia API).
|
|
-#
|
|
-#audio_output {
|
|
-# type "winmm"
|
|
-# name "My WinMM output"
|
|
-## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional
|
|
-# or
|
|
-## device "0" # optional
|
|
-## mixer_type "hardware" # optional
|
|
-#}
|
|
+
|
|
+# An example of an opensl android output.
|
|
+audio_output {
|
|
+ type "sles"
|
|
+ name "OpenSLES output"
|
|
+ mixer_type "software"
|
|
+}
|
|
+
|
|
#
|
|
# An example of an openal output.
|
|
#
|
|
-#audio_output {
|
|
-# type "openal"
|
|
-# name "My OpenAL output"
|
|
-## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional
|
|
-#}
|
|
-#
|
|
-# An example of an sndio output.
|
|
-#
|
|
-#audio_output {
|
|
-# type "sndio"
|
|
-# name "sndio output"
|
|
-# mixer_type "software"
|
|
-#}
|
|
-#
|
|
-# An example of an OS X output:
|
|
+audio_output {
|
|
+ type "openal"
|
|
+ name "OpenAL output"
|
|
+ mixer_type "software"
|
|
+ device "OpenSL"
|
|
+ enabled "no"
|
|
+}
|
|
+#Fifo output for visualizations in ncmpcpp-git
|
|
+ audio_output {
|
|
+ type "fifo"
|
|
+ name "ncmpcpp visualizer"
|
|
+ path "~/../usr/tmp/mpd.fifo"
|
|
+ format "44100:16:2"
|
|
+ enabled "no"
|
|
+}
|
|
+
|
|
#
|
|
-#audio_output {
|
|
-# type "osx"
|
|
-# name "My OS X Device"
|
|
-## device "Built-in Output" # optional
|
|
-## channel_map "-1,-1,0,1" # optional
|
|
-#}
|
|
#
|
|
## Example "pipe" output:
|
|
#
|