/etc/distmp3.conf is in distmp3 0.1.9.ds1-4.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | #------------------------------------------------
# Configfile for distmp3/distmp3host
#
# Comments start with # or ;
#
# Options for distmp3host starts with SERVER_
#
# Options for distmp3 starts with CLIENT_
#
# The options can be overridden on the commandline
# See 'distmp3 --help' and 'distmp3host --help'
# for the syntax.
#
#--------------------
# Server part below |
#--------------------
# if uncommented distmp3host prints debugmessages.
;SERVER_DEBUG=1
# if uncommented distmp3host prints debugmessages to the file.
;SERVER_DEBUGFILE=distmp3host.log
# These two items will be created into a temporary directory only readable
# and writable by the user running the distmp3host.
# the fifo name that the mp3encoder should use as input
SERVER_WAVFIFO=fifo.wav
# the fifo name that the mp3encoder should use as output
SERVER_MP3FIFO=fifo.mp3
# the port the server listens for connections on
SERVER_PORT=4600
# the program that should be executed then a connection is made.
# $wavfifo will be replaced with the path and name of the WAVFIFO
# $mp3fifo will be replaced with the path and name of the MP3FIFO
# Make sure to use the appropriate 'quiet' flag for a custom encoder.
SERVER_PROGRAM=/usr/bin/oggenc -Q -q 4.5 $wavfifo -o $mp3fifo
# the "chunk"-size that the data will be sent in.
SERVER_DATASIZE=16384
#--------------------
# Client part below |
#--------------------
# if uncommented distmp3 prints debugmessages.
;CLIENT_DEBUG=1
# if uncommented distmp3 prints debugmessages to the file.
;CLIENT_DEBUGFILE=distmp3.log
# the port the client tries to connect to on the remote host.
CLIENT_PORT=4600
# the "chunk"-size that the data will be sent in.
CLIENT_DATASIZE=16384
#------------------------------------------------
|