Split MonkeyAudio (.ape + .cue + .log) ของซีดีเพลงทั้งหมดเป็น MP3 ของแต่ละเพลง


8

ฉันมีซีดีเพลงทั้งหมดที่ถูกคัดลอกไปที่ไฟล์เสียงเดียวใน.apeรูปแบบMonkeyAudio ( ) พร้อมด้วย.cueและ.logไฟล์ (โดยใช้ Exact Audio Copy จากความคิดเห็นใน.cueไฟล์)

เราจะแยกไฟล์เสียงขนาดใหญ่หนึ่งไฟล์นี้เป็นไฟล์ MP3 ของแต่ละเพลงได้อย่างไรดีที่สุดหากใช้ข้อมูล ID3 ที่ถูกต้องจาก.cueไฟล์

คำตอบ:



7

คุณสามารถใช้CUETools ในการทำเช่นนั้น - โหลด.cueไฟล์หรือ.apeไฟล์ด้วยอันอื่นในไดเรคทอรีเดียวกันเลือกแทร็กสำหรับรูปแบบคิวและเอาท์พุท mp3 และมันจะทำให้กระบวนการทั้งหมดเป็นไปโดยอัตโนมัติ


2

บน Linux คุณสามารถใช้macเพื่อดัมพ์. .p เป็น. wav จากนั้นbchunkเพื่อแยกไฟล์. wav ขนาดใหญ่เป็นแทร็กโดยใช้ข้อมูลจากไฟล์. ลูกบาศก์

.wav .mp3 ที่จะสามารถทำได้ด้วยง่อย / ffmpeg

ฉันค่อนข้างมั่นใจว่าต้องมี shellscripts ที่ทำให้กระบวนการทั้งหมดโดยอัตโนมัติ (รวมถึงจำนวนประชากรของแท็ก ID3) แต่การค้นหามันเป็นงาน google ที่น่ารำคาญเพราะตอนนี้คุณรู้คำหลักมากมายแล้ว

อย่างที่คุณเห็นฉันถือว่า Linux ถ้าคุณต้องการใช้ระบบปฏิบัติการอื่นพิจารณาเพิ่มชื่อระบบปฏิบัติการเป็นแท็กเพื่อรับคำตอบที่แม่นยำยิ่งขึ้น


2

นี่คือสคริปต์ที่ฉันใช้ (การอ้างอิงของมันอยู่ในความคิดเห็น):

#!/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

shnsplit บน 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

flaconเป็น GUI สำหรับshntoolแต่มันมาพร้อมกับตัวแปลงสัญญาณทั้งหมดที่ต้องการ ... มิฉะนั้นฉันได้รับข้อผิดพลาด:

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) ซึ่งflaconขึ้นอยู่กับซึ่งมีmacเครื่องมือ CLI ซึ่งดูเหมือนว่าจะเป็นส่วนผสมหลักที่ขาดหายไป


วิธีโอเพนซอร์ซที่ใช้งานง่ายเท่านั้น ตั้งแต่ windows มีทุบตีตอนนี้ทำงานเหมือนมีเสน่ห์บน windows
เด็กซน

0

คุณสามารถใช้ Ape Ripper เพื่อแยกแทร็กเสียงจากภาพ Ape ด้วยไฟล์คิว Ape Ripper ยังสามารถแปลงแทร็กเสียงเป็นไฟล์ MP3 ด้วยแท็ก ID3

URL ผลิตภัณฑ์: http://www.softrm.com/ape-ripper.htm

Ape Ripper เป็น shareware คุณสามารถประมวลผลภาพ 3 Ape ด้วยรุ่นทดลอง


OP กำลังถามถึงการแยกไฟล์. CUE
Canadian Luke

0

ฉันใช้ iDealshare VideoGo เพื่อแยก ape ตาม, flac, mp3, wav, wma และอื่น ๆ

มีทั้งเวอร์ชัน Mac และ Windows

ฉันชอบคุณสมบัติการดาวน์โหลดเป็นชุด


โปรดอ่านฉันจะแนะนำซอฟต์แวร์สำหรับเคล็ดลับเกี่ยวกับวิธีการแนะนำซอฟต์แวร์ได้อย่างไร คุณควรให้ลิงค์อย่างน้อยข้อมูลเพิ่มเติมบางอย่างเกี่ยวกับตัวซอฟต์แวร์เองและวิธีการใช้ในการแก้ปัญหาในคำถาม
DavidPostill

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.