123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- ### Example burncd configuration file
- #################################################
- ### Default configuration paths: ###
- ### 1. $XDG_CONFIG_HOME/burncd/burncd.conf ###
- ### 2. $HOME/.burncd.conf ###
- ### 3. $XDG_CONFIG_DIRS/burncd/burncd.conf ###
- ### 4. /etc/burncd.conf ###
- ### 5. ./burncd.conf ###
- #################################################
- ### Unset variables are defaults
- #####################
- ### Path settings ###
- #####################
- # Path of the cdrecord(1) binary.
- # i.e. CDRECORD = /usr/bin/cdrecord
- CDRECORD =
- # Path of the CD drive.
- # i.e. DEVICE = /dev/sr0
- DEVICE =
- # Path of the flac(1) binary.
- # i.e. FLAC = /usr/bin/flac
- FLAC =
- # Path of the default directories.
- # i.e. INPUT = /tmp/dir1 /tmp/dir2
- INPUT =
- # Path of the mpg123(1) binary.
- # i.e. MPG123 = /usr/bin/mpg123
- MPG123 =
- # Path of the output directory.
- # i.e. OUTPUT = /tmp
- OUTPUT =
- # Path of the sox(1) binary.
- # i.e. SOX = /usr/bin/sox
- SOX =
- #####################
- ### Bool settings ###
- #####################
- ### Disabled with all values other than 1.
- # Enable debug output from external programs.
- # i.e. DEBUG = 1
- DEBUG =
- # Enable a test run without burning to a CD.
- # i.e. DRYRUN = 1
- DRYRUN =
- # Enable verbose logging.
- # i.e. VERBOSE = 1
- VERBOSE =
- #############################
- ### Audio format settings ###
- #############################
- ### Valid audio formats:
- ### wav au flac mp3
- # Exclude audio formats from being detected.
- # i.e. EXCLUDE = flac wav
- EXCLUDE =
- # Preferred audio formats.
- # i.e. FORMAT = flac wav
- FORMAT =
|