web-dev-qa-db-ja.com

abcdeでAIFFエンコーディングを使用するにはどうすればよいですか?

AIFFエンコーディングは 現在利用可能 で、CDリッパーabcdeの最新の開発バージョンであることがわかります。

UbuntuのXenial Xerusでこれを簡単にテストするにはどうすればよいですか?

(完全な免責事項:私はabcdeにAIFFエンコーディングを個人的に追加しました...)

1
andrew.46

Abcdeを完全にインストールしなくても、Ubuntuでこれを簡単にテストできます。これにより、abcde 2.8.2がリリースされる前にAIFFエンコーディングをテストできます。 4つの簡単なステップ:

1。必要なアプリケーションをいくつかインストールします...

ここに、インストールする必要があるいくつかの前提条件があります。ターミナルウィンドウを開き、以下を実行します。

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

(これはまた、おそらくcddb-toolスクリプトをインストールする最も簡単な方法であるため、標準のUbuntu abcdeもインストールします。)

2。構成ファイルを配置します:

詳細な構成ファイルを配置すると、abcdeが最適に実行されます。最初に空のファイルを作成します。

touch $HOME/.abcde.conf

次に、任意のテキストエディタを使用して、このファイルに次の構成の詳細を配置します。

# -----------------$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。 git abcde:のコピーを取得します

次に、gitクライアントを使用して、abcde gitツリーの最新バージョンをダウンロードします。

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

これにより、abcdeの作業コピーが$HOME/abcdeに残ります。

4。 abcde:を実行します

今楽しいビットのために:)。ドライブにオーディオCDを挿入し、次の2つのコマンドを実行します。

cd $HOME/abcde
./abcde

./セクションは、ここにダウンロードされたabcdeのコピーのみを参照し、システムにインストールされているリリースバージョンも参照しないため、重要です。)すべてが問題なければ、オーディオCDはAIFFに簡単に変換されます。タグ付けされたファイルは$HOME/Music

参照:

2
andrew.46