Terminal : ripper des CD avec abcde

abcde (A Better CD Encoder)

A Better CD Encoder (abcde) est un programme extrêmement puissant pour encoder des CD musicaux au moyen du terminal.

Pour l'utiliser il faut installer les programmes suivants :

  • abcde --> le programme principal
  • cd-discid
  • cdparanoia --> qui est un ripper
  • id3
  • id3v2

patrick@athee:~$sudo apt install abcde cd-discid cdparanoia id3 id3v2

Normalement les encodeurs lame, ogg/vorbis et Flac sont déjà installés avec la distribution (K)Ubuntu (voir ci-dessous s'ils ne sont pas installés !)

S’il y a un problème de dépendances avec eyed3, rajouter  : glyrc libdiscid0 libdiscid-dev

patrick@athee:~$sudo apt install eyed3 glyrc libdiscid0 libdiscid-dev

Si Lame et d'autres encodeurs ne sont pas installés :

patrick@athee:~$sudo apt install flac lame vorbis-tools

Réponses aux problèmes éventuels

https://ubuntuforums.org/showthread.php?t=1694301

https://lists.einval.com/pipermail/abcde-users/2018-April/000283.html

SCRIPTS .abcde.conf

Ensuite il y a des scripts pour l'encodage en MP3, Ogg Vorbis, FLAC, Musepack, AAC, Monkey's Audio (ape), WavPack, Opus, True Audio (tta) and MPEG-1 Audio Layer II (mp2) !

Pour ces scripts, voir le site : http://www.andrews-corner.org/linux/abcde/ !!! Ce lien ne fonctionne plus ! Andrew Strong a changé de centre d'intérêts et a supprimé sa page consacrée aux scripts pour abcde ! J'ai mis du temps à la retrouver et par hasard je l'ai repérée ici :

https://web.archive.org/web/20161031150419/http://www.andrews-corner.org/abcde.html

Ici le script original d'Andrew pour 10 formats différents !

# -----------------$HOME/.abcde.conf----------------- #
#
# A sample configuration file to convert music cds to
# MP3, Ogg Vorbis, FLAC, Musepack, AAC, WavPack, Opus,
# Monkey's Audio (ape), True Audio and mp2 at the same time!
# Using abcde version 2.7.2
#
# http://andrews-corner.org/abcde.html
# -------------------------------------------------- #

# 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

# 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
TTAENCODERSYNTAX=tta # Specify encoder for True Audio
MP2ENCODERSYNTAX=twolame # Specify encoder for MP2


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
TTA=tta # Path to True Audio encoder
TWOLAME=twolame # Path to MP2 encoder

OGGENCOPTS='-q 6' # Options for Ogg Vorbis
LAMEOPTS='-V 2' # 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
TTAENCOPTS="" # Options for True Audio
TWOLAMENCOPTS="--bitrate 320" # Options for MP2

OUTPUTTYPE="ogg,mp3,flac,mpc,m4a,opus,wv,ape,tta,mp2" # Encode to 10 formats!

# 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/Music"

# The default actions that abcde will take.
ACTIONS=cddb,playlist,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-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${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-${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-${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.2' # Place a comment...
EJECTCD=y # Please eject cd when finished :-)

Il faut placer le script modifié à votre sauce tout simplement dans votre /home/utilisateur/.abcde.conf (il faut le rendre caché !).

Pour ripper un CD il suffit de taper : abcde

... et le programme te demande des confirmations pour ripper.

Multiple exact matches

Lors de la première étape, avant l'extraction, abcde se connecte à une base CDDB pour récupérer la liste des titres du CD. Il se peut que cette base de données contienne deux listes (commençant par #1, #2 …), dans ce cas vous devrez choisir quelle est celle qui vous semble être de meilleure qualité. Une fois la liste choisie, appuyez sur q pour sortir du menu et entrez ensuite le numéro de la liste choisie (1, 2 …). exemple avec l'image ci-dessous

Juillet 2019

Dernière modifs novembre 2021