web-dev-qa-db-ja.com

オーディオCD全体のMonkeyAudio(.ape + .cue + .log)を個々のトラックのMP3に分割します

オーディオCD全体をMonkeyAudio(.ape)形式の単一のオーディオファイルに、.cueおよび.logファイル(正確なオーディオコピーを使用、.cueのコメントから)とともにリッピングしました。ファイル)。

.cueファイルからの正しいID3情報を使用する場合、この1つの大きなオーディオファイルを個々のトラックのMP3ファイルにどのように分割しますか?

8
Jakub Narębski

私は CUE Splitter を使用していますが、Windowsのみのように機能します。

4
Moab

CUETools、 を使用して実行できます— .cueファイルまたは.apeファイルを同じディレクトリにある他のファイルと一緒にロードし、キュースタイルとmp3出力のトラックを選択してプロセス全体を自動化します。

7
Journeyman Geek

Linuxでは、 mac を使用して.apeを.wavにダンプし、次に bchunk を使用して、.cueファイルの情報を使用して大きな.wavファイルをトラックに分割できます。

.wavから.mp3は、 lame / ffmpeg で実行できます。

プロセス全体(ID3タグの母集団を含む)を自動化するシェルスクリプトが必要だと私は確信していますが、それらを見つけることは簡単なGoogleタスクです。

ご覧のとおり、Linuxを想定しました。別のオペレーティングシステムを使用して実行する場合は、os名をタグとして追加して、より正確な回答を得ることを検討してください。

2
vtest

shnsplit on Ubuntu 14.04

Sudo add-apt-repository -y ppa:flacon
Sudo apt-get update
Sudo apt-get install -y flacon
shntool split -f *.cue -o flac -t '%n - %p - %t' *.ape

flaconshntoolのGUIですが、必要なすべてのコーデックが付属しています...それ以外の場合はエラーが発生します:

shnsplit: warning: failed to read data from input file using format: [ape]
shnsplit:          + you may not have permission to read file: [example.ape]
shnsplit:          + arguments may be incorrect for decoder: [mac]
shnsplit:          + verify that the decoder is installed and in your PATH
shnsplit:          + this file may be unsupported, truncated or corrupt
shnsplit: error: cannot continue due to error(s) shown above

特に、flacon[〜#〜] ppa [〜#〜]macパッケージ(Monkey's Audio Console)を提供し、その上にflacondepends、これにはmac CLIツールがあり、欠けている主な成分のようです。

これが私が使用するスクリプトです(その依存関係はコメントにあります):

#!/bin/bash
# ll-cue2mp3-320.bash
# cue and audio file basename must be the same. Usage:
# ll-cue2mp3-320.bash `basename *cue .cue`
# It makes mp3 folder in the dir containing rip, put splits
# there in the format 'trackNumber - trackTitle', and convert splits
# to mp3s. Tags are not transfered to the newly born mp3s.
#
# You can specify the this format with a second arg. Default value
# is '%n - %t'. Other options (them are lltag options):
#
# %a means ARTIST 
# %t means TITLE 
# %A means ALBUM 
# %n means NUMBER 
# %g means GENRE 
# %d means DATE 
# %c means COMMENT 
# %i means that the text has to be ignored 
# %F means the original basename of the file 
# %E means the original extension of the file 
# %P means the original path of the file 
#
# Dependences: lltag, lame, cuetools, shntool, flac, wavpack,
# parallel, ape support (if you're going to split ape files)

# Don't forget to put input args in quotes, e.g:
# ll-cue2mp3-320 "name of the cue file" "%a - %t"
#
# TODO:
# convert tags to utf-8 - if they are not


# parsing 1st arg:
fl="$1"
if [ -e "$fl".flac ]; then
    ex="flac"
Elif [ -e "$fl".ape ]; then
    ex="ape"
else [ -e "$fl".wv ]
    ex="wv"
fi


# parsing 2nd arg:
frmt="$2"
frmt=${2:-"%n - %t"}


# splitting the dump:
mkdir mp3

cuebreakpoints "$fl".cue | shnsplit -o flac -d mp3 -a split "$fl".$ex && \
    cuetag "$fl".cue mp3/split*\.flac 

cd mp3


# renaming splits basing on tags:
for i in `ls`; do
    lltag --yes --no-tagging --rename "$frmt" $i
done


# converting splits to mp3:
parallel -j+0 flac -d {} ::: *\.flac
parallel -j+0 lame --cbr -b 320 -q 0 {} ::: *\.wav

find . -name "*.flac" | parallel -j+0 rm
find . -name "*.wav" | parallel -j+0 rm

rename 's/\.wav//' *


# done!
2
Adobe

Ape Ripperを使用して、Ape画像からキューファイル付きのオーディオトラックを抽出できます。ApeRipperは、オーディオトラックをID3タグ付きのMP3ファイルに変換することもできます。

製品のURL: http://www.softrm.com/ape-ripper.htm

Ape Ripperはシェアウェアであり、試用版で3つのApe画像を処理できます。

0
user241793

WAV MP3 FLAC OGGおよびAPE用のさらに別の無料の小さなオーディオコンバータ: FlicFlac

screen shot

0
Mattia72

私はiDealshareVideoGoを使用して、キューベースのape、flac、mp3、wav、wmaなどを分割します

Mac版とWindows版の両方があります。

私はそのバッチダウンロード機能が好きです。

0
David Jane