From owner-freebsd-questions@FreeBSD.ORG Sun Oct 5 18:24:45 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 551B616A4B3 for ; Sun, 5 Oct 2003 18:24:45 -0700 (PDT) Received: from mail.hitmedia.com (mail.hitmedia.com [205.162.11.163]) by mx1.FreeBSD.org (Postfix) with SMTP id 9011F43F93 for ; Sun, 5 Oct 2003 18:24:44 -0700 (PDT) (envelope-from bsdlap@hitmedia.com) Received: (qmail 53900 invoked by uid 0); 6 Oct 2003 01:24:46 -0000 Date: Sun, 5 Oct 2003 18:24:46 -0700 From: BSD baby To: T Kellers Message-ID: <20031006012446.GA53715@mail.hitmedia.com> References: <200310051037.37551.kellers@njit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310051037.37551.kellers@njit.edu> User-Agent: Mutt/1.4.1i cc: freebsd-questions@freebsd.org Subject: Re: wav to mp3? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2003 01:24:45 -0000 > I did a make search in the ports collection and didn't see what (I think) I > need, so I'll ask here. > Is there a utility (or utilities) in ports for converting .wav files to mp3? /usr/ports/audio/lame has really become the standard. SO easy to use from the command-line, just do: lame YourSong.wav ... and it will make the standard 128kbps MP3 file. or: lame --preset standard YourSong.wav ... and it will make a super-high-quality audiophile MP3. If you want to do a batch, you can just use "find" to loop through them all like this: cd /WAVFILES find . -name "*.wav" -exec lame {} \;