forked from anishathalye/dotfiles_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabcde.conf
107 lines (88 loc) · 4.65 KB
/
abcde.conf
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# -----------------$HOME/.abcde.conf----------------- #
#
# Customized by George Hilliard
# Using abcde version 2.7
#
# http://andrews-corner.org/abcde.html
# -------------------------------------------------- #
CDROM=/dev/sr0
# Encode tracks immediately after reading. Saves disk space, gives
# better reading of 'scratchy' disks and better troubleshooting of
# encoding process but slows the operation of abcde quite a bit:
# LOWDISK=y
LOWDISK=n
# Specify the method to use to retrieve the track information,
# the alternative is to specify 'cddb':
#CDDBMETHOD=musicbrainz
# Make a local cache of cddb entries and then volunteer to use
# these entries when and if they match the cd:
CDDBCOPYLOCAL="y"
CDDBLOCALDIR="$HOME/.cddb"
CDDBLOCALRECURSIVE="y"
CDDBUSELOCAL="y"
OGGENCODERSYNTAX=oggenc # Specify encoder for Ogg Vorbis
MP3ENCODERSYNTAX=lame # Specify encoder for MP3
FLACENCODERSYNTAX=flac # Specify encoder for FLAC
# MPCENCODERSYNTAX=mpcenc # Specify encoder for Musepack
# AACENCODERSYNTAX=fdkaac # Specify encoder for AAC
OPUSENCODERSYNTAX=opusenc # Specify encoder for Opus
# WVENCODERSYNTAX=wavpack # Specify encoder for Wavpack
# APENCODERSYNTAX=mac # Specify encoder for Monkey's Audio
OGGENC=oggenc # Path to Ogg Vorbis encoder
LAME=lame # Path to MP3 encoder
FLAC=flac # Path to FLAC encoder
# MPCENC=mpcenc # Path to Musepack encoder
# FDKAAC=fdkaac # Path to the AAC encoder
OPUSENC=opusenc # Path to Opus encoder
# WVENC=wavpack # Path to WavPack encoder
# APENC=mac # Path to Monkey's Audio encoder
MKCUE=abcde.mkcue
OGGENCOPTS='-q 6' # Options for Ogg Vorbis
LAMEOPTS='--abr 192 --replaygain-accurate -q0' # Options for MP3
FLACOPTS='-s -e -V -8' # Options for FLAC
# MPCENCOPTS='--extreme' # Options for Musepack
# FDKAACENCOPTS='-p 2 -m 5 -a 1' # Options for fdkaac
OPUSENCOPTS="--vbr --bitrate 128" # Options for Opus
# WVENCOPTS="-hx3" # Options for WavPack
# APENCOPTS="-c4000" # Options for Monkey's Audio
GLYRCOPTS='--minsize 500'
EYED3OPTS='-Q'
OUTPUTTYPE="opus,flac"
# The cd ripping program to use. There are a few choices here: cdda2wav,
# dagrab, cddafs (Mac OS X only) and flac. New to abcde 2.7 is 'libcdio'.
CDROMREADERSYNTAX=cdparanoia
# Give the location of the ripping program and pass any extra options,
# if using libcdio set 'CD_PARANOIA=cd-paranoia'.
CDPARANOIA=cdparanoia
CDPARANOIAOPTS="--never-skip=40"
# Give the location of the CD identification program:
CDDISCID=cd-discid
# Give the base location here for the encoded music files.
OUTPUTDIR="$HOME/Documents/Ripped"
# The default actions that abcde will take.
ACTIONS=cddb,cue,read,encode,tag,move,clean
# Decide here how you want the tracks labelled for a standard 'single-artist',
# multi-track encode and also for a multi-track, 'various-artist' encode:
OUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}/${ALBUMFILE}/${TRACKNUM}. ${TRACKFILE}'
VAOUTPUTFORMAT='${OUTPUT}/Various Artists/${ALBUMFILE}/${TRACKNUM}. ${TRACKFILE}'
# Decide here how you want the tracks labelled for a standard 'single-artist',
# single-track encode and also for a single-track 'various-artist' encode.
# (Create a single-track encode with 'abcde -1' from the commandline.)
ONETRACKOUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}/${ALBUMFILE}/${ALBUMFILE}'
VAONETRACKOUTPUTFORMAT='${OUTPUT}/Various Artists/${ALBUMFILE}/${ALBUMFILE}'
# Create playlists for single and various-artist encodes. I would suggest
# commenting these out for single-track encoding.
PLAYLISTFORMAT='${OUTPUT}/${ARTISTFILE}/${ALBUMFILE}/${ALBUMFILE}.m3u'
VAPLAYLISTFORMAT='${OUTPUT}/Various Artists/${ALBUMFILE}/${ALBUMFILE}.m3u'
# This function takes out dots preceding the album name, and removes a grab
# bag of illegal characters. It allows spaces, if you do not wish spaces add
# in -e 's/ /_/g' after the first sed command.
mungefilename ()
{
echo "$@" | sed -e 's/^\.*//' | tr -d ":><|*/\"'?[:cntrl:]"
}
MAXPROCS=2 # Run a few encoders simultaneously
PADTRACKS=y # Makes tracks 01 02 not 1 2
EXTRAVERBOSE=2 # Useful for debugging
COMMENT='abcde version 2.7' # Place a comment...
EJECTCD=y # Please eject cd when finished :-)