web-dev-qa-db-fra.com

Comment utiliser l'encodage AIFF avec abcde?

Je vois que l'encodage AIFF est maintenant disponible avec la dernière version de développement de l'abcde de ripper de CD.

Comment puis-je facilement tester cela sous Xenial Xerus d'Ubuntu?

(Clause de non-responsabilité complète: j'ai personnellement ajouté le codage AIFF à abcde ...)

1
andrew.46

Vous pouvez facilement tester cela sous Ubuntu sans même faire une installation complète d'abcde. Cela vous permettra de tester le codage AIFF avant la sortie de abcde 2.8.2 :). Quatre étapes faciles:

1. Installez certaines applications requises ...

Voici quelques prérequis qui doivent être installés. Ouvrez une fenêtre de terminal et exécutez ce qui suit:

Sudo apt-get install cd-discid cdparanoia abcde ffmpeg git

(Cela installera également le stock Ubuntu abcde car c'est peut-être le moyen le plus simple d'installer également le script cddb-tool.)

2. Placez un fichier de configuration:

abcde fonctionne mieux lorsqu'un fichier de configuration détaillé est placé. Créez d'abord un fichier vide:

touch $HOME/.abcde.conf

Utilisez maintenant votre éditeur de texte préféré pour placer les détails de configuration suivants dans ce fichier:

# -----------------$HOME/.abcde.conf----------------- #
# 
#   A sample configuration file to convert music cds to 
#   Audio Interchange File Format (AIFF). This requires
#   abcde version 2.8.2 and a recent copy of FFmpeg
# 
#   http://andrews-corner.org/linux/abcde/index.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 'musicbrainz':
CDDBMETHOD=cddb

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

# Specify the encoder to use for Audio Interchange File Format (AIFF):
AIFFENCODERSYNTAX=ffmpeg

# Specify the path to the selected encoder. In most cases the encoder
# should be in your $PATH as I illustrate below, otherwise you will 
# need to specify the full path. For example: /usr/bin/ffmpeg
FFMPEG=ffmpeg

# Specify your required AIFF encoding options here. These options are
# needed by FFmpeg for tagging and selection of id3v2 version:
#  1. '-write_id3v2 1' allows id3v2 tagging while '-write_id3v2 0' disables tagging
#  2. '-id3v2_version 4' gives version id3v2.4 while '3' gives id3v2.3 
AIFFENCOPTS="-write_id3v2 1 -id3v2_version 4"  

# Output type for AIFF:
OUTPUTTYPE="aiff"                        

# 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

OUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
VAOUTPUTFORMAT='${OUTPUT}/Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
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:]"
}

# What extra options?
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.8.2'             # Place a comment...
EJECTCD=y                                 # Please eject cd when finished :-)

3. Prenez une copie de git abcde:

Utilisez maintenant votre client git pour télécharger la version la plus récente de l'arbre git abcde:

git clone http://git.einval.com/git/abcde.git ~/abcde

Cela laissera une copie de travail de abcde dans $HOME/abcde.

4. Exécutez abcde:

Maintenant pour le fun :). Placez un CD audio dans votre lecteur et exécutez les deux commandes suivantes:

cd $HOME/abcde
./abcde

(Notez que le ./ la section est importante car elle ne référencera que la copie d'abcde téléchargée ici et non la version finale également installée sur votre système.) dans $HOME/Music!

Références:

2
andrew.46