Howto grab/encode an audio cd?

2003-04-01 Thread D. Theunissen
Hi there,

I've searched for some docs to grab a cd and convert it to mp3 (like with cdex for 
windows) but it seems that there is no such program written for freebsd (correct me if 
I'm wrong). The only thing I can find is to grab it manual, with cdda2wav and lame.

Has anyone got any id how to automize this? Is there a program that fixes it for me?

tnx in advance (again :)

Dan
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Howto grab/encode an audio cd?

2003-04-01 Thread Kirk Strauser
At 2003-04-01T19:39:05Z, D. Theunissen [EMAIL PROTECTED] writes:

 Has anyone got any id how to automize this? Is there a program that fixes
 it for me?

I like grip (from the audio/grip port).
-- 
Kirk Strauser
In Googlis non est, ergo non est.


pgp0.pgp
Description: PGP signature


Re: Howto grab/encode an audio cd?

2003-04-01 Thread Giorgos Keramidas
On 2003-04-01 21:39, D. Theunissen [EMAIL PROTECTED] wrote:

 I've searched for some docs to grab a cd and convert it to mp3 (like
 with cdex for windows) but it seems that there is no such program
 written for freebsd (correct me if I'm wrong). The only thing I can
 find is to grab it manual, with cdda2wav and lame.

There is actually a section in the Handbook about this.  You can use
the instructions at the following two sections:

http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/sound-mp3.html
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html

 Has anyone got any id how to automize this?
 Is there a program that fixes it for me?

Yes, there are ways to automate this.  I personally prefer writing my
own shell scripts to do it.  Something along the lines of:

base=cdrom-$(date '+%Y-%m-%d-%H%M')
mkdir ${base}  cd ${base} || exit 1
dagrab -v -d /dev/acd0c -f '%02d.wav' -o 4 -m 0640 16  \
bladeenc -del -br 192 -crc -private *.wav  exit 0
/bin/rm -fr *.wav
exit 1

- Giorgos

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]