X-Git-Url: https://git.hcoop.net/clinton/abcde.git/blobdiff_plain/9f659adac68c1a038d7c112806aba0d56bccc741..ad8b65317ae74f8838269c5792f27164b513f985:/abcde.conf diff --git a/abcde.conf b/abcde.conf index 6c2fff5..02a02d4 100644 --- a/abcde.conf +++ b/abcde.conf @@ -1,4 +1,4 @@ -# System defaults for abcde version 2.1.x +# System defaults for abcde version 2.2.x # Nothing in this file is uncommented by default. # # If you wish to override these system-wide settings, create your own @@ -31,12 +31,13 @@ # Specify the style of encoder to use here - # oggenc, vorbize - for OGGENCODERSYNTAX # lame, gogo, bladeenc, l3enc, xingmp3enc, mp3enc - for MP3ENCODERSYNTAX -# flac - the only supported for FLACENCODERSYNTAX at the moment. -# default is a valid option for oggenc, lame and flac. +# flac - the only supported for FLACENCODERSYNTAX at the moment +# speexenc - the only encoder for SPEEXENCODERSYNTAX +# mppenc - encoder for MPPENCODERSYNTAX +# default is a valid option for oggenc, lame, flac, speexenc and mppenc. # Currently this affects the default location of the binary, the variable # to pick encoder command-line options from, and where the options are # given. -# 'default' will currently choose oggenc or lame depending on OUTPUTTYPE. #MP3ENCODERSYNTAX=default #OGGENCODERSYNTAX=default #FLACENCODERSYNTAX=default @@ -60,6 +61,11 @@ # 01.my_song.ext #PADTRACKS=n +# Define if you want abcde to be non-interactive. +# Keep in mind that there is no way to deactivate it right now in the command +# line, so setting this option makes abcde to be always non-interactive. +#INTERACTIVE=n + # Specify 'nice'ness of the encoder, the CD reader and the distmp3 proc. # This is a relative 'nice'ness (that is, if the parent process is at a # nice level of 12, and the ENCNICE is set to 3, then the encoder will @@ -94,7 +100,7 @@ #MD5SUM=md5sum #DISTMP3=distmp3 #VORBISCOMMENT=vorbiscomment -#NORMALIZE=normalize +#NORMALIZE=normalize-audio #CDSPEED=eject # Options to call programs with: @@ -127,6 +133,9 @@ #SPEEXENCOPTS= # MPP/MP+ (Musepack): +# For the encoder options take a look at the manpage. Set them like this: +# MPPENCOPTS='--xtreme' if you wish to set more options then: +# MPPENCOPTS='--xtreme --skip 20 --fade 10' #MPPENCOPTS= #ID3OPTS= @@ -224,14 +233,25 @@ # * Translate colons to a space and a dash for Windows compatibility # * Eat control characters, single quotes, and question marks # * Translate spaces and forward slashes to underscores +# * Translate stars into pluses. # To change that, redefine the mungefilename function. # mungefilename recieves the CDDB data (artist, track, title, whatever) # as $1 and outputs it on stdout. #mungefilename () #{ -# echo "$@" | sed s,:,\ -,g | tr \ / __ | tr -d \'\"\?\[:cntrl:\] +# echo "$@" | sed s,:,\ -,g | tr \ /\* __+ | tr -d \'\"\?\[:cntrl:\] +#} + +# Custom genre munging: +# By default we just transform uppercase to lowercase. Not much of a fancy +# function, with not much use, but one can disable it ot just turn the first +# Uppercase. +#mungegenre () +#{ +# echo $CDGENRE | tr "[:upper:]" "[:lower:]" #} + # Custom pre-read function # By default it does nothing. # You can set some things to get abcde funtion in better ways: @@ -254,3 +274,7 @@ # on the local machine (requires distmp3 to be installed on local machine and # distmp3host to be installed and running on all remote machines - see README) #REMOTEHOSTS=foo,bar,baz,quux,qiix + +# Set to obtain some information about actions happening in the background +# Usefull if you have a slow network or CDDB servers seem irresponsive. +#EXTRAVERBOSE=n