How do I rip an audio CD to a single file?
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Breezy Bay
--
Chapters
00:00 How Do I Rip An Audio Cd To A Single File?
00:19 Accepted Answer Score 11
00:46 Answer 2 Score 4
01:44 Answer 3 Score 0
02:06 Answer 4 Score 1
02:32 Thank you
--
Full question
https://superuser.com/questions/187275/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#audio #ubuntu1004 #ripping
#avk47
ACCEPTED ANSWER
Score 11
At least a command-line application abcde
, found in the universe, can handle ripping the whole CD into one file.
After installing, the basic usage would be (in Terminal):
abcde -1 -a default,cue -o wav
The command should create a full-length file with a cue file. Instead of wav
, you can use ogg, mp3, flac, spx, mpc, m4a
if you have the codecs.
ANSWER 2
Score 4
KDE has this functionality built into the desktop! You simply open the audio cd folder and you get:
- all tracks listed as ogg and mp3 files, each with their own file name.
- An ogg and mp3 file, named "all" (or similar name) which represents ALL tracks in one file.
- You also get other codecs listed depending on what is installed.
Now these are not true ogg/mp3 files [yet]. You simply copy any of these virtual files into another folder and kde then creates true audio files in the target folder. Real simple.
See: What really happens with audio CDs in KDE 4.x?
(If you have a Gnome ONLY system (I usually have both available) you might try KDE's K3b program which runs on Gnome, but I am not certain if it has this feature.)
ANSWER 3
Score 1
Lets say you have a 17 track album (like Abbey Road).
Stick the CD in you computer, open a command line terminal window and navigate to a directory you want your huge WAV file to end up in. Then issue this command:
cdparanoia 1-17 -w Abbey.wav
1-17 means Tracks 1 to 17 -w means output to a WAV file "Abbey.wav" is the name of the WAV file that will be created.
ANSWER 4
Score 0
cdparanoia
is pretty neat to rip an audio CD to wav
files one file per song.
This is a lossless process, and once you have the wav
files,
you can slice and dice and do anything you want with them,
for example concatenate into a single file using sox
, for example:
cdparanoia -B
sox *.wav cd.wav