Slackware This Forum is for the discussion of Slackware Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
09-21-2008, 09:50 AM
|
#16
|
|
Guru
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,706
|
Oh, I see, I forgot to put the name of the toc file. Good to see that it worked. Also, cdrdao is designed for copying and imaging audio cds, but it will work for data too, however I usually use 'dd' for that, it's easier. It's just that if you use dd for audio CDs and then try to burn the resulting image, you may get variable results, the toc file insures a perfect recreation of the original audio CD.
|
|
|
|
09-21-2008, 07:08 PM
|
#17
|
|
HCL Maintainer
Registered: Jun 2003
Location: Tupelo, MS
Distribution: Gentoo
Posts: 6,926
Rep: 
|
Some other options ...
Slackware-12.1 HOW-TO rip audio CD from CLI - insert CD into cup holder
- Audio CD - KDE daemon popup -- choose Do Nothing, OK
- mkdir -p Keith-Green/Songs-of-Testimony && cd Keith-Green/Songs-of-Testimony
(choose appropriate directory name)
- cdparanoia -B
(rip audio tracks from CD to wav files in current dir)
- check the goods
Code:
mingdao@silas:~/Keith-Green/Songs-of-Testimony$ ls -l
total 534820
-rw-r--r-- 1 mingdao users 30674828 2008-09-22 06:05 track01.cdda.wav
-rw-r--r-- 1 mingdao users 36557180 2008-09-22 06:06 track02.cdda.wav
-rw-r--r-- 1 mingdao users 39106748 2008-09-22 06:06 track03.cdda.wav
-rw-r--r-- 1 mingdao users 36738284 2008-09-22 06:06 track04.cdda.wav
-rw-r--r-- 1 mingdao users 42554780 2008-09-22 06:07 track05.cdda.wav
-rw-r--r-- 1 mingdao users 41983244 2008-09-22 06:07 track06.cdda.wav
-rw-r--r-- 1 mingdao users 35421164 2008-09-22 06:08 track07.cdda.wav
-rw-r--r-- 1 mingdao users 38784524 2008-09-22 06:08 track08.cdda.wav
-rw-r--r-- 1 mingdao users 46409708 2008-09-22 06:08 track09.cdda.wav
-rw-r--r-- 1 mingdao users 130524284 2008-09-22 06:09 track10.cdda.wav
-rw-r--r-- 1 mingdao users 44706860 2008-09-22 06:10 track11.cdda.wav
-rw-r--r-- 1 mingdao users 24148028 2008-09-22 06:10 track12.cdda.wav
mingdao@silas:~/Keith-Green/Songs-of-Testimony$ du -sh .
523M .
- cdrecord dev=/dev/cdrom -audio *.wav
(make a CD from those WAV files)
- for i in *.wav; do lame "$i" "`basename "$i" .wav`".mp3; done
(convert .wav to .mp3 in pwd)
- check the goods
Code:
mingdao@silas:~/Keith-Green/Songs-of-Testimony$ ls -l *mp3
-rw-r--r-- 1 mingdao users 2783607 2008-09-22 06:40 track01.cdda.mp3
-rw-r--r-- 1 mingdao users 3316923 2008-09-22 06:40 track02.cdda.mp3
-rw-r--r-- 1 mingdao users 3548472 2008-09-22 06:40 track03.cdda.mp3
-rw-r--r-- 1 mingdao users 3333641 2008-09-22 06:40 track04.cdda.mp3
-rw-r--r-- 1 mingdao users 3861106 2008-09-22 06:41 track05.cdda.mp3
-rw-r--r-- 1 mingdao users 3809279 2008-09-22 06:41 track06.cdda.mp3
-rw-r--r-- 1 mingdao users 3214105 2008-09-22 06:41 track07.cdda.mp3
-rw-r--r-- 1 mingdao users 3519215 2008-09-22 06:41 track08.cdda.mp3
-rw-r--r-- 1 mingdao users 4210937 2008-09-22 06:42 track09.cdda.mp3
-rw-r--r-- 1 mingdao users 11840364 2008-09-22 06:43 track10.cdda.mp3
-rw-r--r-- 1 mingdao users 4056292 2008-09-22 06:43 track11.cdda.mp3
-rw-r--r-- 1 mingdao users 2191359 2008-09-22 06:43 track12.cdda.mp3
mingdao@silas:~/Keith-Green/Songs-of-Testimony$ du -sh *mp3
2.7M track01.cdda.mp3
3.2M track02.cdda.mp3
3.4M track03.cdda.mp3
3.2M track04.cdda.mp3
3.7M track05.cdda.mp3
3.7M track06.cdda.mp3
3.1M track07.cdda.mp3
3.4M track08.cdda.mp3
4.1M track09.cdda.mp3
12M track10.cdda.mp3
3.9M track11.cdda.mp3
2.1M track12.cdda.mp3
- oggenc --tracknum='track' track01.cdda.wav -o 'track01.ogg'
( convert .wav files to .ogg format - I don't know how to do multiple files at once with ogg anymore)
These are just some CLI options. Here are two links:
HOWTO Convert audio files
Ogg, WAV, and MP3
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 04:32 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|