Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Feb 1998 14:27:08 +0100 (CET)
From:      Oliver Fromme <olli@dorifer.heim3.tu-clausthal.de>
To:        freebsd-multimedia@FreeBSD.ORG
Subject:   Re: Creating MP3's under FreeBSD...
Message-ID:  <199802231327.OAA06816@dorifer.heim3.tu-clausthal.de>

next in thread | raw e-mail | index | archive | help
vadik likholetov wrote in list.freebsd-multimedia:
 > here's the script I'm using to create mp3's :
 > 
 > #!/bin/sh
 > TRACK=1;
 > 
 > MAXTRACK=`tosha -iq -d /dev/wcd0c 2>&1 |wc -l`
 > while [ $TRACK -ne $MAXTRACK ]
 > do
 > 	echo Encoding Track $TRACK of $MAXTRACK
 > #
 > 	tosha -t $TRACK -d /dev/wcd0c -o $TRACK.pcm
 > 	./l3enc  $TRACK.pcm $TRACK.mp3 -br 128000 -sr 44100
 > 	rm -rf $TRACK.pcm
 > #
 > 	TRACK=`expr $TRACK + 1`
 > done

I'd recommend to use the -hq option of l3enc.  Encoding takes
longer, but the resulting mp3 files are of better quality.

Regards
   Oliver

-- 
Oliver Fromme, Leibnizstr. 18-61, 38678 Clausthal, Germany
(Info: finger userinfo:olli@dorifer.heim3.tu-clausthal.de)

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-multimedia" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199802231327.OAA06816>