Difference between revisions of "Ripping a cd with many small tracks"

From Finninday
Jump to: navigation, search
 
Line 2: Line 2:
  
  
I bought a an audio book on cd that I want to play from my mp3 library. But it is annoyingly broken into a million tracks, each one minute long.
+
I bought an audio book on cd that I want to play from my mp3 library. But it is annoyingly broken into a million tracks, each one minute long.
  
 
I ripped the whole shebang (17 cds) into over 1,000 tracks. I was planning on going through the mess and using Audacity to glue together the tracks that break in the middle of a sentence. Boring. And error prone. Of course there is a better way. The first, and sufficient, better way I stumbled on is to use gstreamer to rip each cd into a single mp3 file. Perfect. Here’s the incantation:
 
I ripped the whole shebang (17 cds) into over 1,000 tracks. I was planning on going through the mess and using Audacity to glue together the tracks that break in the middle of a sentence. Boring. And error prone. Of course there is a better way. The first, and sufficient, better way I stumbled on is to use gstreamer to rip each cd into a single mp3 file. Perfect. Here’s the incantation:
  
 
  gst-launch cdparanoia ! lame ! filesink location=chapter01-02.mp3
 
  gst-launch cdparanoia ! lame ! filesink location=chapter01-02.mp3

Revision as of 02:11, 29 November 2007


I bought an audio book on cd that I want to play from my mp3 library. But it is annoyingly broken into a million tracks, each one minute long.

I ripped the whole shebang (17 cds) into over 1,000 tracks. I was planning on going through the mess and using Audacity to glue together the tracks that break in the middle of a sentence. Boring. And error prone. Of course there is a better way. The first, and sufficient, better way I stumbled on is to use gstreamer to rip each cd into a single mp3 file. Perfect. Here’s the incantation:

gst-launch cdparanoia ! lame ! filesink location=chapter01-02.mp3