अलग-अलग ट्रैक्स के एमपी 3 में पूरे ऑडियो सीडी के मंकीआडियो (.ape + .cue + .log) को विभाजित करें


8

मेरे पास एक पूरी ऑडियो सीडी है जो मंकीआडियो ( .ape) फॉर्मेट में सिंगल ऑडियो फाइल के साथ रिप्लेस होती है , .cueऔर .logफाइलों के साथ (एक्सक्यूट ऑडियो कॉपी का इस्तेमाल करके, .cueफाइल में कमेंट से )।

कोई व्यक्ति व्यक्तिगत ट्रैक्स की एमपी 3 फ़ाइलों में इस एक बड़ी ऑडियो फ़ाइल को कैसे विभाजित करेगा, अगर .cueफ़ाइल से सही ID3 जानकारी है ?

जवाबों:



7

आप इसे करने के लिए CUETools का उपयोग कर सकते हैं - एक ही निर्देशिका में दूसरे के साथ .cueफ़ाइल या .apeफ़ाइल को लोड करें, क्यू स्टाइल और एमपी 3 आउटपुट के लिए ट्रैक का चयन करें और यह पूरी प्रक्रिया को स्वचालित करेगा।


2

लिनक्स पर, आप .af में .pav को डंप करने के लिए मैक का उपयोग कर सकते हैं , फिर बड़ी .wav फ़ाइल को .rc फ़ाइल से जानकारी का उपयोग करके ट्रैक में विभाजित करने के लिए bchunk

.wav .mp3 को लंगड़ा / ffmpeg के साथ किया जा सकता है ।

मुझे पूरा यकीन है कि पूरी प्रक्रिया (ID3 टैग की आबादी सहित) को स्वचालित करने वाले गोले होना चाहिए, लेकिन उन्हें ढूंढना एक तुच्छ Google कार्य है, क्योंकि अब आप बहुत सारे कीवर्ड जानते हैं।

जैसा कि आप देख सकते हैं, मैंने लिनक्स को ग्रहण किया, यदि आप इसे किसी अन्य ऑपरेटिंग सिस्टम का उपयोग करना चाहते हैं, तो अधिक सटीक उत्तर प्राप्त करने के लिए ओएस नाम को टैग के रूप में जोड़ने पर विचार करें।


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 उबंटू 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के लिए एक जीयूआई है 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 पीपीए प्रस्तुत macपैकेज (बंदर के ऑडियो कंसोल), जिस पर flaconनिर्भर करता है, जो है macCLI उपकरण है, जो मुख्य लापता घटक हो रहा है।


केवल ओपन सोर्स विधि का उपयोग करना आसान है। चूंकि विंडोज़ में अब बैश है, इसलिए विंडोज़ पर एक आकर्षण की तरह भी काम करता है।
पक

0

आप क्यू फाइल के साथ एप इमेज से ऑडियो ट्रैक निकालने के लिए एप रिपर का उपयोग कर सकते हैं, एप रिपर आईडी 3 टैग के साथ ऑडियो ट्रैक को एमपी 3 फाइल में भी बदल सकते हैं।

उत्पाद URL: http://www.softrm.com/ape-ripper.htm

एप रिपर एक शेयरवेयर है, आप ट्रायल वर्जन के साथ 3 एप इमेज प्रोसेस कर सकते हैं।


ओपी .CUE फ़ाइल को विभाजित करने के बारे में पूछ रहा है
कनाडाई ल्यूक

0

मैं cue आधारित एप, flac, एमपी 3, wav, wma आदि को विभाजित करने के लिए iDealshare VideoGo का उपयोग करता हूं

इसमें मैक और विंडोज दोनों वर्जन हैं।

मुझे इसका बैच डाउनलोडिंग फीचर पसंद है।


कृपया पढ़ें कि मैं कुछ युक्तियों के लिए सॉफ्टवेयर की सिफारिश कैसे करूं कि आपको सॉफ्टवेयर की सिफारिश करने के बारे में कैसे जाना चाहिए। आपको कम से कम एक लिंक प्रदान करना चाहिए, सॉफ़्टवेयर के बारे में कुछ अतिरिक्त जानकारी और प्रश्न में समस्या को हल करने के लिए इसका उपयोग कैसे किया जा सकता है।
DavidPostill

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.