From owner-freebsd-multimedia Sat Sep 29 13: 4:11 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 1D58137B408 for ; Sat, 29 Sep 2001 13:04:08 -0700 (PDT) Received: from sm.socccd.cc.ca.us (pool0054.cvx4-bradley.dialup.earthlink.net [209.178.146.54]) by falcon.mail.pas.earthlink.net (8.11.5/8.9.3) with ESMTP id f8TK2BC20323; Sat, 29 Sep 2001 13:02:15 -0700 (PDT) Message-ID: <3BB62980.7E1FCACA@sm.socccd.cc.ca.us> Date: Sat, 29 Sep 2001 13:05:20 -0700 From: Farooq Mela X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.4-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Nathan Mace Cc: freebsd-multimedia@freebsd.org Subject: Re: one last question References: <20010929154720.064522e9.mace_nathan@uchaswv.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Nathan Mace wrote: > well now that i can finally rip Cd's i have one last question. the other day i discovered ogg vorbis....i've been playing around with it and i think i'm going to convert all of my mp3's to ogg files. my question is though is there any software for going from ogg to wav files? thanks Please wrap your lines at 72 characters wide. This will go from mp3 directly to ogg, provided you have mpg123 and oggenc To make a wav file from an ogg, use ogg123 -d wav #!/bin/ksh for arg; do oggfile=${arg%%mp3}ogg mpg123 -b 2048 -s $arg 2>/dev/null | \ oggenc -r -o $oggfile - done Oh yes the joys of shell scripting ;-) -- farooq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message