LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-09-2005, 07:24 PM   #1
1madstork
Member
 
Registered: Aug 2004
Location: Southaven, Mississippi, USA
Distribution: Debian Etch
Posts: 108

Rep: Reputation: 15
mp3 ripper for linux


I'm looking for something that will rip my cd's and convert them to mp3's that I can put on my iPod. What's a good linux app for this? Does k3b have an encoder or is there something else I should use?
 
Old 01-09-2005, 07:37 PM   #2
qwijibow
LQ Guru
 
Registered: Apr 2003
Location: nottingham england
Distribution: Gentoo
Posts: 2,672

Rep: Reputation: 47
not sure if K3b has an ripper.

graphical
xmcd
roxcd (for rox desktop)
sound-juicer (for gnome2)
grip (frontend)
jack (frontend)

command lime rippers include
rip
mp3c
bladeenc

there are loads... consult google.com/linux
 
Old 01-09-2005, 07:38 PM   #3
fsck
LQ Newbie
 
Registered: Jan 2005
Posts: 1

Rep: Reputation: 0
I've always used 'grip' to rip CD's, stable and pretty quick. http://nostatic.org/grip/
 
Old 01-09-2005, 09:29 PM   #4
LoungeLizard
Member
 
Registered: Apr 2003
Location: Tampa, Florida
Distribution: Mint 17.2 ,OpenSuse, Kali and Pepermint OS 6
Posts: 276

Rep: Reputation: 30
Grip has worked like a charm for me...I cant remember but I also think there is a plugin for XMMS
 
Old 01-10-2005, 12:05 AM   #5
paranoid times
Member
 
Registered: Jan 2005
Distribution: Fedora Core 3, 4
Posts: 135

Rep: Reputation: 16
one more for grip
 
Old 01-10-2005, 12:30 AM   #6
daihard
Member
 
Registered: Jul 2003
Location: Seattle, WA
Distribution: Kubuntu 14.04 LTS
Posts: 915

Rep: Reputation: 34
Okay, I'll be the devil's advocate.

I switched from Grip to KAudioCreator because Grip would crash very often on me. I use "lame" as the underlying encoder with both Grip and KAudioCreator, so the frontend doesn't make a whole lot of difference to me.

If Grip works stably for you, I don't see any reason to not use it, though.
 
Old 01-10-2005, 12:35 AM   #7
IBall
Senior Member
 
Registered: Nov 2003
Location: Perth, Western Australia
Distribution: Ubuntu, Debian, Various using VMWare
Posts: 2,088

Rep: Reputation: 62
To rip one track at a time from CD into mp3 format:
Code:
cdparanoia "n" - | lame - "track-n.mp3"
where n is the desired track.

If you want to do the whole CD:
Code:
#!/bin/sh

count=1
numTracks=$1
destDir=$2

until test $count -gt $numTracks
   do
   cdparanoia "$count" - | lame - "$destDir/track$count.mp3"
   let "count=$count+1"
   done
see "man lame" and "man cdparanoia" for details

I hope this helps
--Ian
 
Old 01-10-2005, 09:35 AM   #8
1madstork
Member
 
Registered: Aug 2004
Location: Southaven, Mississippi, USA
Distribution: Debian Etch
Posts: 108

Original Poster
Rep: Reputation: 15
Quote:
I switched from Grip to KAudioCreator because Grip would crash very often on me.
Grip keeps crashing when I try to close it. No biggie. Either way, with Grip and KAudioCreator, I don't have a 'lame' encoder. I tried to apt-get install lame but it said that lame is an obsolete package. I have no manual entry for lame either so I guess it's not there. I'm going to keep looking for it but if anyone can give me a shortcut to finding a .deb or tarball I'd appreciate it.
 
Old 01-10-2005, 10:43 AM   #9
daihard
Member
 
Registered: Jul 2003
Location: Seattle, WA
Distribution: Kubuntu 14.04 LTS
Posts: 915

Rep: Reputation: 34
Quote:
Originally posted by 1madstork
Grip keeps crashing when I try to close it. No biggie. Either way, with Grip and KAudioCreator, I don't have a 'lame' encoder. I tried to apt-get install lame but it said that lame is an obsolete package. I have no manual entry for lame either so I guess it's not there. I'm going to keep looking for it but if anyone can give me a shortcut to finding a .deb or tarball I'd appreciate it.
I've uploaded the tarball on my Web space. Please feel free to grab it.

http://daihardM3.home.comcast.net/data/lame-3.92.tar.gz
 
Old 01-10-2005, 03:27 PM   #10
1madstork
Member
 
Registered: Aug 2004
Location: Southaven, Mississippi, USA
Distribution: Debian Etch
Posts: 108

Original Poster
Rep: Reputation: 15
Quote:
I've uploaded the tarball on my Web space. Please feel free to grab it.
Thanks!
 
Old 01-27-2005, 05:20 PM   #11
andrewguy9
LQ Newbie
 
Registered: Apr 2004
Location: UC Davis
Posts: 9

Rep: Reputation: 0
I tried to use kaudiocreator because it would do the cddb lookup for me, and fill in the tags.
I found, however, that is was really unstable!!!
I tried the command line path, which worked fine, except it didn't set any of the mp3 tags.
Is there a command line solution for doing the cddb lookup?


P.S. I'm using cdparanoia and lame

Last edited by andrewguy9; 01-27-2005 at 05:22 PM.
 
Old 01-27-2005, 09:25 PM   #12
kak
Member
 
Registered: Jul 2004
Location: Moriarty, NM, USA about 100 yards form Rattle Snake Coutry
Distribution: Slackware , Ubuntu
Posts: 269

Rep: Reputation: 30
I use ripperX never had any stability issues with it and it sets up the tags.
http://ripperx.sourceforge.net/
 
Old 01-27-2005, 10:13 PM   #13
daihard
Member
 
Registered: Jul 2003
Location: Seattle, WA
Distribution: Kubuntu 14.04 LTS
Posts: 915

Rep: Reputation: 34
Quote:
Originally posted by andrewguy9
I tried to use kaudiocreator because it would do the cddb lookup for me, and fill in the tags.
I found, however, that is was really unstable!!!
I tried the command line path, which worked fine, except it didn't set any of the mp3 tags.
Is there a command line solution for doing the cddb lookup?
Which version of KAudioCreator are you using? The version that came with KDE 3.1.5 was really unstable, but it has improved quite a bit since then. I currently use 1.12, which came with KDE 3.4 Beta1, with cdparanoia and lame as the backend apps. I've never had any major issue with it.
 
Old 01-27-2005, 10:27 PM   #14
doralsoral
Member
 
Registered: Aug 2003
Location: raleigh
Distribution: Gentoo 2005.1 x86_64
Posts: 931

Rep: Reputation: 31
RipperX is the best!!!!!!!!!!!!!
 
Old 01-28-2005, 01:20 AM   #15
homey
Senior Member
 
Registered: Oct 2003
Posts: 3,057

Rep: Reputation: 61
IBall,
I like your script! Hope you don't mind, I put a couple of sanity checks in.
Code:
#!/bin/bash
#If you want to do the whole cd, run this script.
#Example: ./test 27 /home/music

usage()
{
        echo "Usage: $0 [NumTracks] [DestDir]"
        exit 1;
}

test "$1" || usage
test -d "$2" || usage

count=1
numTracks=$1
destDir=$2

until test $count -gt $numTracks
   do
   cdparanoia "$count" - | lame - "$destDir/song$count.mp3"
   let "count=$count+1"
   done
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Fast Cd Mp3 ripper? badmofo666 Linux - Newbie 13 03-23-2005 01:17 AM
cd ripper / Mp3 player nwatna Linux - Software 2 01-05-2005 08:20 PM
MP3 Ripper? sovietpower Linux - Software 4 11-11-2003 02:41 PM
best mp3 ripper (with cddb support) N_A_J_M Linux - General 25 06-22-2003 09:39 PM
tear mp3 ripper FNC Linux - General 1 06-05-2001 02:51 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:20 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration