You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

abcde.conf 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. # System defaults for abcde version 2.8.1
  2. # Nothing in this file is uncommented by default.
  3. #
  4. # If you wish to override these system-wide settings, create your own
  5. # .abcde.conf file in your home directory.
  6. # CDDB options
  7. # Choose whether you want to use "cddb" and/or "musicbrainz". Default
  8. # is "musicbrainz", but both can be specified in a comma delimited list
  9. # to be tried sequentially in the event of failure of the first
  10. # search.
  11. CDDBMETHOD=cddb
  12. # If you wish to use a different CDDB server, edit this line.
  13. # If you just wanted to use a proxy server, just set your http_proxy
  14. # environment variable - wget will use it correctly.
  15. CDDBURL="http://freedb.freedb.org/~cddb/cddb.cgi"
  16. # The CDDB protocol level.
  17. # Right now 5 is latin1 output and 6 is UTF8 encoding.
  18. CDDBPROTO=6
  19. # The CDDB protocol requires hello information, including a valid username
  20. # and hostname. If you feel paranoid about giving away such info, edit this
  21. # line - the format is username@hostname.
  22. HELLOINFO="`whoami`@`hostname`"
  23. # This controls the email address CDDB changes are submitted to.
  24. #CDDBSUBMIT=freedb-submit@freedb.org
  25. # The following options control whether or not fetched CDDB entries
  26. # are cached locally in $CDDBLOCALDIR
  27. CDDBCOPYLOCAL="y"
  28. CDDBLOCALDIR="$HOME/.cddb"
  29. CDDBLOCALRECURSIVE="y"
  30. # If NOSUBMIT is set to y, then abcde will never prompt asking if you
  31. # wish to submit your edited cddb file.
  32. #NOSUBMIT=n
  33. # If NOCDDBQUERY is set to y, then abcde will never even try to access
  34. # the CDDB server; running abcde will automatically drop you into a
  35. # blank cddb file to edit at your leisure. This is the same as the
  36. # -n option. NOCDDBQUERY=y implies NOSUBMIT=y.
  37. #NOCDDBQUERY=n
  38. # Select here if you want to use the locally stored CDDB entries.
  39. # This is useful if you do a lot of editing to those CDDB entries.
  40. # Also, other tools like Grip store CDDB entries under $HOME/.cddb,
  41. # so they can be reused when ripping CDs. (If this is set to "y" make
  42. # sure that CDDBLOCALRECURSIVE is also set to "y".)
  43. #CDDBUSELOCAL="n"
  44. # List, separated with a comma, the fields we want the parsing function to
  45. # output. Defaults to YEAR and GENRE, for a complete list of fields provided by
  46. # CDDB.
  47. # The fields are not case sensitive. Actually, "y,g" will work as fine as "Y,G"
  48. # or "YEAR, GENRE"
  49. #SHOWCDDBFIELDS=year,genre
  50. # Specify the style of encoder to use here -
  51. # oggenc, vorbize - for OGGENCODERSYNTAX
  52. # lame, gogo, bladeenc, l3enc, xingmp3enc, mp3enc - for MP3ENCODERSYNTAX
  53. # flac - the only supported for FLACENCODERSYNTAX at the moment
  54. # speexenc - the only encoder for SPEEXENCODERSYNTAX
  55. # mpcenc - encoder for MPCENCODERSYNTAX
  56. # wavpack, ffmpeg - encoder for WVENCODERSYNTAX
  57. # mac - for APENCODERSYNTAX
  58. # fdkaac, ffmpeg, neroAacEnc, faac, qaac, fhgaacenc - for AACENCODERSYNTAX
  59. # opusenc - for OPUSENCODERSYNTAX
  60. # twolame, ffmpeg - for MP2ENCODERSYNTAX
  61. # tta, ttaenc - for TTAENCODERSYNTAX
  62. # default is a valid option for oggenc, lame, flac, speexenc, mpcenc, wavpack,
  63. # fdkaac, opus, twolame and tta. Currently this affects the default location of the
  64. # binary, the variable to pick encoder command-line options from, and where
  65. # the options are given.
  66. #MP3ENCODERSYNTAX=default
  67. #OGGENCODERSYNTAX=default
  68. #FLACENCODERSYNTAX=default
  69. #SPEEXENCODERSYNTAX=default
  70. #MKAENCODERSYNTAX=default
  71. #MPCENCODERSYNTAX=default
  72. #WVENCODERSYNTAX=default
  73. #APENCODERSYNTAX=default
  74. #AACENCODERSYNTAX=default
  75. #OPUSENCODERSYNTAX=default
  76. #MP2ENCODERSYNTAX=default
  77. #TTAENCODERSYNTAX=default
  78. # Specify the syntax of the normalize binary here - so far only 'normalize'
  79. # is supported.
  80. #NORMALIZERSYNTAX=default
  81. # CD reader program to use - currently recognized options are 'cdparanoia',
  82. # 'libcdio' (cd-paranoia),'icedax', 'cdda2wav', 'dagrab', 'pird',
  83. # 'cddafs' (Mac OS X only) and 'flac'.
  84. #CDROMREADERSYNTAX=cdparanoia
  85. # CUE reader syntax for the CUE reader program to use.
  86. # abcde supports 2 CUE modes: 'mkcue' and 'abcde.mkcue' so you can set the
  87. # MKCUE variable accordingly. The 'abcde.mkcue' uses an internal
  88. # implementation, without the need of an external program.
  89. #CUEREADERSYNTAX=default
  90. # Specify the program to convert a CUE sheet back to a CD disc ID for CDDB queries.
  91. # Select between '/path/to/cue2discid' (provided as an example) or
  92. # 'abcde.cue2discid', implemented internaly.
  93. #CUE2DISCID=abcde.cue2discid
  94. # Keep the wav files after encoding. Set it to "y" and remove "clean" from
  95. # the list of default actions, since we purge the temp directory as default.
  96. #KEEPWAVS=n
  97. # Track padding: force abcde to pad tracks using 0, so every song uses a two
  98. # digit entry. If set to "y", even a single song encoding outputs a file like
  99. # 01.my_song.ext
  100. #PADTRACKS=n
  101. # Define if you want abcde to be non-interactive.
  102. # Keep in mind that there is no way to deactivate it right now in the command
  103. # line, so setting this option makes abcde to be always non-interactive.
  104. #INTERACTIVE=n
  105. # Specify 'nice'ness of the encoder, the CD reader and the distmp3 proc.
  106. # This is a relative 'nice'ness (that is, if the parent process is at a
  107. # nice level of 12, and the ENCNICE is set to 3, then the encoder will
  108. # run with an absolute nice value of 15. Note also, that setting these
  109. # to be empty will result in some default niceness increase (4 in tcsh
  110. # and 10 using the bsdutils' nice).
  111. #ENCNICE=10
  112. #READNICE=10
  113. #DISTMP3NICE=10
  114. # Paths of programs to use
  115. # Encoders:
  116. #LAME=lame
  117. #GOGO=gogo
  118. #BLADEENC=bladeenc
  119. #L3ENC=l3enc
  120. #XINGMP3ENC=xingmp3enc
  121. #MP3ENC=mp3enc
  122. #VORBIZE=vorbize
  123. #OGGENC=oggenc
  124. #FLAC=flac
  125. #SPEEXENC=speexenc
  126. #MPCENC=mpcenc
  127. #WVENC=wavpack
  128. #APENC=mac
  129. #FAAC=faac
  130. #NEROAACENC=neroAacEnc
  131. #FDKAAC=fdkaac
  132. #OPUSENC=opusenc
  133. #TWOLAME=twolame
  134. # Note that if you use avconv rather than FFmpeg give the
  135. # path to avconv here (e.g. FFMPEG=/usr/bin/avconv):
  136. # FFMPEG=ffmpeg
  137. #TTA=tta
  138. #TTAENC=ttaenc
  139. # The path for qaac, refalac and fhgaacenc can be problematic as abcde
  140. # cannot cope with the 'standard' Wine location with spaces. For example:
  141. # "$HOME/.wine/drive_c/Program\ Files/qaac/qaac.exe" is problematic. Try instead:
  142. # "$HOME/.wine/drive_c/qaac/qaac.exe"
  143. # Installation instructions for qaac, refalac and fhgaacenc here:
  144. # http://www.andrews-corner.org/linux/qaac.html
  145. # http://www.andrews-corner.org/linux/fhgaacenc.html
  146. # (Hint: Use QAAC=refalac to use the Open Source alac encoder...)
  147. #QAAC=qaac
  148. #FHGAACENC=fhgaacenc
  149. # Taggers, rippers, replaygain etc:
  150. #ID3=id3
  151. #ID3V2=id3v2
  152. #MID3V2=mid3v2
  153. #EYED3=eyeD3
  154. #CDPARANOIA=cdparanoia
  155. #CD_PARANOIA=cd-paranoia
  156. #CDDA2WAV=icedax
  157. #PIRD=pird
  158. #CDDAFS=cp
  159. #CDDISCID=cd-discid
  160. #CDDBTOOL=cddb-tool
  161. #EJECT=eject
  162. #MD5SUM=md5sum
  163. #DISTMP3=distmp3
  164. #VORBISCOMMENT=vorbiscomment
  165. #METAFLAC=metaflac
  166. #NORMALIZE=normalize-audio
  167. #CDSPEED=eject
  168. #VORBISGAIN=vorbisgain
  169. #MKCUE=mkcue
  170. #MKTOC=cdrdao
  171. #DIFF=diff
  172. #WVGAIN=wvgain
  173. #APETAG=apetag
  174. #GLYRC=glyrc
  175. #IDENTIFY=identify
  176. #CONVERT=convert
  177. #DISPLAYCMD=display
  178. #WINE=wine
  179. # Options to call programs with:
  180. # If HTTPGET is modified, the HTTPGETOPTS options should also be defined
  181. # accordingly. If HTTPGET is changed, the default options will be set,
  182. # if HTTPGETOPTS is empty or not defined.
  183. #HTTPGET=wget
  184. # for fetch (FreeBSD): HTTPGETOPTS="-q -o -"
  185. # for wget: HTTPGETOPTS="-q -nv -O -"
  186. # for curl (MacOSX): HTTPGETOPTS="-f -s"
  187. #HTTPGETOPTS="-q -O -"
  188. # MP3:
  189. # For the best LAME encoder options have a look at:
  190. # <http://wiki.hydrogenaudio.org/index.php?title=LAME#Recommended_encoder_settings>
  191. # A good option is '-V 0' which gives Variable Bitrate Rate (VBR) recording
  192. # with a target bitrate of ~245 Kbps and a bitrate range of 220...260 Kbps.
  193. #LAMEOPTS=
  194. #GOGOOPTS=
  195. # Bladeenc still works with abcde in 2015, and the last release of bladeenc
  196. # was in 2001! Settings that will produce a great encode are: '-br 192'
  197. #BLADEENCOPTS=
  198. # L3enc still works with abcde in 2015, pretty amazing when you realise
  199. # that the last release of l3enc was in 1997! Settings that will produce
  200. # a great encode are: '-br 256000 -hq -crc'
  201. #L3ENCOPTS=
  202. #XINGMP3ENCOPTS=
  203. # And mp3enc also still works with abcde in 2015 with the last release
  204. # of mp3enc in 1998! Settings that will produce a great encode, albeit
  205. # a slow one, are: '-v -br 256000 -qual 9 -no-is -bw 16500'
  206. #MP3ENCOPTS=
  207. # Ogg:
  208. #VORBIZEOPTS=
  209. #OGGENCOPTS=
  210. # FLAC:
  211. # The flac option is a workaround for an error where flac fails
  212. # to encode with error 'floating point exception'. This is flac
  213. # error in get_console_width(), corrected in flac 1.3.1
  214. #FLACOPTS="--silent"
  215. # Options passed to MetaFlac for ReplayGain tags:
  216. #FLACGAINOPTS="--add-replay-gain"
  217. # Speex:
  218. #SPEEXENCOPTS=
  219. # MPP/MP+ (Musepack):
  220. # For the encoder options look at 'mpcenc --longhelp', consider
  221. # setting '--extreme' for a good quality encode.
  222. #MPCENCOPTS=
  223. # WavPack:
  224. # Look at 'wavpack --help' for detailed options, consider using '-hx3'
  225. # for a good quality encode
  226. #WAVENCOPTS=
  227. # For Wavpack replay gain we set both the default of 'track gain'
  228. # as well as this option for 'album gain'. Better media players
  229. # such as vlc can select either or neither.
  230. #WVGAINOPTS='-a'
  231. # Monkey's Audio (ape)
  232. # Without this set mac chokes unfortunately. Choices
  233. # are from 1000 to 5000.
  234. #APENCOPTS='-c4000'
  235. # M4A/AAC
  236. # There are now 6 AAC encoders available to abcde, the default being
  237. # fdkaacenc. Note that the old AACENCOPTS has been rendered obsolete by
  238. # the following options, new to abcde 2.7:
  239. # 1. fdkaac: see 'fdkaac --help' and consider using
  240. # '--profile 2 --bitrate-mode 5 --afterburner 1'
  241. # for a good quality encode.
  242. #FDKAACENCOPTS='--bitrate 192k'
  243. # 2. FFmpeg: Use the following to use the FFmpeg native encoder, adding
  244. # -strict -2 if you have an older FFmpeg:
  245. # FFMPEGENCOPTS="-c:a aac -b:a 192k"
  246. # 3. neroAacEnc: see 'neroAacEnc -help' and
  247. # consider using '-q 0.65' for a good quality encode.
  248. #NEROAACENCOPTS=
  249. # 4. faac: see 'faac --long-help' and consider
  250. # using '-q 250' for a good quality encode.
  251. #FAACENCOPTS=
  252. # 5. qaac: simply run 'wine qaac.exe' to see all options and
  253. # consider using '--tvbr 100' for a good quality
  254. # encode or '--alac' for Apple Lossless Audio Codec
  255. #QAACENCOPTS=
  256. # 6. fhgaacenc: simply run 'wine fhgaacenc.exe' to see all options.
  257. # consider using '--vbr 4' for a decent quality encode.
  258. #FHGAACENCOPTS=
  259. # True Audio
  260. # This is a lossless format so no options of any note available:
  261. #TTAENCOPTS=
  262. # OPUS
  263. # For the encoder options look at: 'opusenc -h'
  264. #OPUSENCOPTS=
  265. # MP2
  266. # Currently uses either twolame or ffmpeg, for twolame options look at:
  267. # 'twolame --help',a highly recommended setting is "--bitrate 320".
  268. #TWOLAMENCOPTS=
  269. # FFmpeg or avconv can be used for several audio codecs, as well as being
  270. # the default encoder for the Matroska container mka::
  271. # 1. Encoding to WavPack (FFmpeg only: avconv does not have a native encoder).
  272. # Consider setting the following with a compression_level between 0-8:
  273. # FFMPEGENCOPTS="-c:a wavpack -compression_level 6"
  274. # 2. Encoding to ALAC (both FFmpeg and avconv have a native encoder).
  275. # Consider using the following for either FFmpeg and avconv:
  276. # FFMPEGENCOPTS="-c:a alac"
  277. # 3. Encoding to mp2
  278. # Consider using the following for either FFmpeg and avconv:
  279. # FFMPEGENCOPTS="-c:a mp2 -b:a 320k"
  280. #FFMPEGENCOPTS=
  281. # mp3 tagging:
  282. # There are three ways to tag MP3 files:
  283. # 1. id3v1 (with id3)
  284. # 2. id3v2.3 (with id3v2)
  285. # 3. id3v2.4 (with eyeD3) This is the default
  286. # Use ID3TAGV to select one of the older formats:
  287. #ID3TAGV=id3v2.4
  288. #ID3OPTS=
  289. #ID3V2OPTS=
  290. #EYED3OPTS="--set-encoding=utf16-LE"
  291. # Other options:
  292. # The variable CDPARANOIOPTS is also used by GNU's cd-paranoia,
  293. # so use this when setting CDROMREADERSYNTX=libcdio.
  294. #CDPARANOIAOPTS=
  295. #CDDA2WAVOPTS=
  296. #PIRDOPTS="-p"
  297. #CDDAFSOPTS="-f"
  298. #CDDBTOOLOPTS=
  299. #EJECTOPTS=
  300. #DISTMP3OPTS=
  301. #NORMALIZEOPTS=
  302. #CDSPEEDOPTS="-x"
  303. #CDSPEEDVALUE=""
  304. #MKCUEOPTS=""
  305. #MKTOCOPTS=""
  306. #DIFFOPTS=""
  307. #VORBISCOMMENTOPTS="-R"
  308. #METAFLACOPTS="--no-utf8-convert"
  309. # Bear in mind that the AtomicParsley option '--overWrite' is already
  310. # used in abcde...
  311. #ATOMICPARSLEYOPTS=
  312. # Actions to take
  313. # Comma-separated list of one or more of the following:
  314. # cddb,cue,read,normalize,encode,tag,move,replaygain,playlist,getalbumart,clean,default
  315. # encode implies read
  316. # normalize implies read
  317. # tag implies cddb,read,encode
  318. # move implies cddb,read,encode,tag
  319. # replaygain implies cddb,read,encode,tag,move
  320. # playlist implies cddb
  321. # An action can be added to the "default" action by specifying it along with
  322. # "default", without having to repeat the default ones:
  323. # ACTIONS=default,playlist
  324. # The default action list (referenced as "default") is defined in the following
  325. # comment:
  326. #ACTIONS=cddb,read,encode,tag,move,clean
  327. # CD device you want to read from
  328. # It can be defined as a singletrack flac file, but since it might change from
  329. # file to file it makes little sense to define it here.
  330. CDROM=/dev/cdrom
  331. # If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d"
  332. # If we are using the ide-scsi emulation layer, we need to define a "g"
  333. #CDPARANOIACDROMBUS="d"
  334. # If you'd like to make a default location that overrides the current
  335. # directory for putting mp3's, uncomment this.
  336. OUTPUTDIR=/data/music
  337. # Or if you'd just like to put the temporary .wav files somewhere else
  338. # you can specify that here
  339. #WAVOUTPUTDIR=`pwd`
  340. # OUTPUTTYPE can be any of a number of formats, either a single format
  341. # (e.g. "ogg") or a combination of them separated with ","
  342. # (e.g. "flac,mp3"). Currently recognised and supported are:
  343. # "flac", "m4a", "mp3, "mpc", "ogg", "opus", "mka", "spx", "vorbis", "wav", "wv", "ape"
  344. OUTPUTTYPE=mp3
  345. # Output filename format - change this to reflect your inner desire to
  346. # organize things differently than everyone else :)
  347. # You have the following variables at your disposal:
  348. # OUTPUT, GENRE, ALBUMFILE, ARTISTFILE, TRACKFILE, TRACKNUM and YEAR.
  349. # Make sure to single-quote this variable. abcde will automatically create
  350. # the directory portion of this filename.
  351. # NOTICE: OUTPUTTYPE has been deprecated in the OUTPUTFORMAT string.
  352. # Since multiple-output was integrated we always append the file type
  353. # to the files. Remove it from your user defined string if you are getting
  354. # files like ".ogg.ogg".
  355. #OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
  356. # Like OUTPUTFORMAT but for Various Artists discs.
  357. #VAOUTPUTFORMAT='Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
  358. # Like OUTPUTFORMAT and VAOUTPUTFORMAT but for the ONEFILE rips.
  359. #ONETRACKOUTPUTFORMAT=$OUTPUTFORMAT
  360. #VAONETRACKOUTPUTFORMAT=$VAOUTPUTFORMAT
  361. # Define how many encoders to run at once. This makes for huge speedups
  362. # on SMP systems. Defaults to 1. Equivalent to -j.
  363. #MAXPROCS=2
  364. # Support for systems with low disk space:
  365. # n: Default parallelization (read entire CD in while encoding)
  366. # y: No parallelization (rip, encode, rip, encode...)
  367. #LOWDISK=n
  368. # If set to y, enables batch mode normalization, which preserves relative
  369. # volume differences between tracks of an album.
  370. #BATCHNORM=n
  371. # Enables nogap encoding when using the 'lame' encoder.
  372. #NOGAP=y
  373. # Set the playlist file location format. Uses the same variables and format
  374. # as OUTPUTFORMAT. If the playlist is specified to be in a subdirectory, it
  375. # will be created for you and the playlist will reference files from that
  376. # subdirectory.
  377. #PLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
  378. # If you want to prefix every filename in a playlist with an arbitrary
  379. # string (such as 'http://you/yourstuff/'), use this option
  380. #PLAYLISTDATAPREFIX=''
  381. #Like PLAYLIST{FORMAT,DATAPREFIX} but for Various Artists discs:
  382. #VAPLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
  383. #VAPLAYLISTDATAPREFIX=''
  384. #This will give the playlist CR-LF line-endings, if set to "y".
  385. #(some hardware players insist on CR-LF line-endings)
  386. #DOSPLAYLIST=n
  387. # album art download options (see glyrc's help for details with more detailed
  388. # examples here: https://github.com/sahib/glyr/wiki/Commandline-arguments).
  389. # For example use '--formats jpg;jpeg' to only search for JPEG images
  390. # These options: '--from <provider>' and '--lang <langcode>' might also be useful
  391. #GLYRCOPTS=
  392. #ALBUMARTFILE="cover.jpg"
  393. #ALBUMARTTYPE="JPEG"
  394. # Options for ImageMagick commands used by album art processing when available
  395. # For example: CONVERTOPTS="-colorspace RGB -resize 600x600>"
  396. # to make the image RGB and fit inside 600x600 while keeping the aspect ratio
  397. #IDENTIFYOPTS=
  398. #CONVERTOPTS=
  399. #DISPLAYCMDOPTS="-resize 512x512 -title abcde_album_art"
  400. # By default convert is only called when the image type is different from
  401. # ALBUMARTTYPE, use ALBUMARTALWAYSCONVERT="y" to always call convert
  402. #ALBUMARTALWAYSCONVERT="n"
  403. # Custom filename munging:
  404. # By default, abcde will do the following to CDDB data to get a useful filename:
  405. # 1. Delete any dots preceding the title (first sed command)
  406. # 2. Replace all spaces with an underscore (second sed command). Simply remove
  407. # this if you prefer spaces.
  408. # 3. Delete a grab bag of characters which variously Windows and Linux do not permit
  409. # (tr command). Remove any of these from the list if you wish to actually use them.
  410. #
  411. #mungefilename ()
  412. #{
  413. # echo "$@" | sed -e 's/^\.*//' -e 's/ /_/g' | tr -d ":><|*/\"'?[:cntrl:]"
  414. #}
  415. #
  416. # Custom filename munging specific to track names:
  417. # By default this function will call the mungefilename function.
  418. #mungetrackname ()
  419. #{
  420. # mungefilename $@
  421. #}
  422. #
  423. # Custom filename munging specific to artist names:
  424. # By default this function will call the mungefilename function.
  425. #mungeartistname ()
  426. #{
  427. # mungefilename $@
  428. #}
  429. #
  430. # Custom filename munging specific to album names:
  431. # By default this function will call the mungefilename function.
  432. #mungealbumname ()
  433. #{
  434. # mungefilename $@
  435. #}
  436. # Custom genre munging:
  437. # By default we just transform uppercase to lowercase. Not much of a fancy
  438. # function, with not much use, but one can disable it or just turn the first
  439. # Uppercase.
  440. #mungegenre ()
  441. #{
  442. # echo $CDGENRE | tr "[:upper:]" "[:lower:]"
  443. #}
  444. # Custom pre-read function
  445. # By default it does nothing.
  446. # You can set some things to get abcde function in better ways:
  447. # * Close the CD tray using eject -t (if available in eject and supported by
  448. # your CD device.
  449. # * Set the CD speed. You can also use the built-in options, but you can also
  450. # set it here. In Debian, eject -x and cdset -x do the job.
  451. # KEEP IN MIND that executables included in pre_read must be in your $PATH or
  452. # you have to define them with full /path/to/binary
  453. # Uncomment and substitute the ":" with your commands.
  454. #pre_read ()
  455. #{
  456. #:
  457. #}
  458. # Custom post-read function
  459. # By default it does nothing.
  460. # You can set some things to get abcde function in better ways:
  461. # * Store a copy of the CD TOC.
  462. # KEEP IN MIND that executables included in post_read must be in your $PATH or
  463. # you have to define them with full /path/to/binary
  464. # Uncomment and substitute the ":" with your commands.
  465. #post_read ()
  466. #{
  467. #:
  468. #}
  469. # post_encode
  470. # By default it does nothing.
  471. # You can set some things to get abcde function in better ways:
  472. # * Move the resulting directory over the network
  473. # * Compare results with a previously made run, for tests
  474. # KEEP IN MIND that executables included in post_encode must be in your $PATH or
  475. # you have to define them with full /path/to/binary
  476. # Uncomment and substitute the ":" with your commands.
  477. #post_encode ()
  478. #{
  479. #:
  480. #}
  481. # If you'd like to have abcde eject the cdrom after all the tracks have been
  482. # read, uncomment the following line.
  483. #EJECTCD=y
  484. # To encode on the remote machines foo, bar, baz, quux, and qiix, as well as
  485. # on the local machine (requires distmp3 to be installed on local machine and
  486. # distmp3host to be installed and running on all remote machines - see README)
  487. #REMOTEHOSTS=foo,bar,baz,quux,qiix
  488. # Set to 1,2, etc. to obtain some information about actions happening in the background
  489. # Useful if you have a slow network or CDDB servers seem unresponsive.
  490. #EXTRAVERBOSE=0