NoPaste

Meine conf Datei von abcde

von Houbey

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

Quellcode

Hier kannst du den Code kopieren und ihn in deinen bevorzugten Editor einfügen. PASTEBIN_DOWNLOAD_SNIPPET_EXPLAIN