Como posso usar a codificação AIFF com abcde?

1

Vejo que a codificação AIFF é agora disponível a última versão de desenvolvimento do CD ripper abcde.

Como posso testar isso facilmente no Xenial Xerus do Ubuntu?

(Aviso completo: eu, pessoalmente, adicionei codificação AIFF para abcde ...)

    
por andrew.46 15.07.2017 / 07:08

1 resposta

2

Você pode facilmente testar isso no Ubuntu sem precisar fazer uma instalação completa do abcde. Isso permitirá que você teste a codificação AIFF antes que o abcde 2.8.2 seja lançado :). Quatro etapas fáceis:

1. Instale alguns aplicativos necessários ...

Aqui estão alguns pré-requisitos que devem ser instalados. Abra uma janela do Terminal e execute o seguinte:

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

(Isso também instalará o arquivo do Ubuntu abcde, pois talvez seja a maneira mais fácil de instalar o script cddb-tool).

2. Coloque um arquivo de configuração:

O abcde é executado melhor quando um arquivo de configuração detalhado é colocado. Primeiro crie um arquivo vazio:

touch $HOME/.abcde.conf

Agora, use seu editor de texto preferido para colocar os seguintes detalhes de configuração neste arquivo:

# -----------------$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. Pegue uma cópia do git abcde:

Agora use seu cliente git para baixar a versão mais recente da árvore abcde git:

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

Isso deixará uma cópia de trabalho de abcde em $HOME/abcde .

4. Execute o abcde:

Agora para o pouco de diversão :). Coloque um CD de áudio em sua unidade e execute os dois comandos a seguir:

cd $HOME/abcde
./abcde

(Observe que a seção ./ é importante, pois isso fará referência apenas à cópia de abcde baixada aqui e não à versão também instalada em seu sistema.) Se tudo estiver bem, seu CD de áudio será convertido sem dor para AIFF com os arquivos marcados e colocados em $HOME/Music !

Referências:

por andrew.46 15.07.2017 / 07:08