From owner-freebsd-multimedia Thu Aug 7 16:27:49 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA06774 for multimedia-outgoing; Thu, 7 Aug 1997 16:27:49 -0700 (PDT) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id QAA06766 for ; Thu, 7 Aug 1997 16:27:46 -0700 (PDT) Received: from ct.picker.com by whqvax.picker.com with SMTP; Thu, 7 Aug 1997 19:27:12 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA02096; Thu, 7 Aug 97 19:27:10 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id TAA04364; Thu, 7 Aug 1997 19:24:37 -0400 Message-Id: <19970807192436.55920@ct.picker.com> Date: Thu, 7 Aug 1997 19:24:36 -0400 From: Randall Hopper To: "Christopher T. Johnson" Cc: multimedia@FreeBSD.ORG Subject: Re: Question: Recording from CD via AWE 64 References: <199708050232.TAA03735@rah.star-gate.com> <199708051034.GAA05748@NetGSI.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.76 In-Reply-To: <199708051034.GAA05748@NetGSI.com>; from Christopher T. Johnson on Tue, Aug 05, 1997 at 06:34:03AM -0400 Sender: owner-freebsd-multimedia@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Christopher T. Johnson: |> Try tosha : |> ftp://ftp.freebsd.org/pub/FreeBSD/ports-current/audio/tosha |> |> It can copy sound tracks in 16bit. | |Unfortunently, I have one of the older CDROM drives. I and 2 friends |bought 10 of them for $300 dollars about 2 years ago. They are 2x |CDROM readers and do not support access to audio trackes. Tosha gives |lots and lots of error messages. Well, if nothing else, you can resample @ 44Khz 16-bit stereo via the soundcard's DSP. If your AWE64's like my SB32 you have a CD-audio input. Make sure your CD's plugged into it, use mixer or xmix to set the recording source to CD, then record from the dsp while workman plays your CD. There's a link to some simple DSP record/play utils I use off my home page: http://multiverse.com/~rhh/ (Shift-Click in Netscape to grab it). Unpkg, "make", and then: dsp-record -r 44100 -b 16 -c 2 > RAWAUDIO to record 44Khz 16-bit stereo. Use dsp-play with the same args to play it back via the dsp. |> I'm looking for tools to record from my CD and also to be able |> to convert sounds to MP2 or MP3 format. | |> I'd prefer 44100Hz sampling on 16 bits. With the raw file in hand, use sox to convert it to AIFF, then mpeg_musicin (mpegaudio port) to take that to mp2 or mp3: sox -t raw -s -w -c 2 -r 44100 RAWAUDIO -t aiff AUDIO.aiff mpeg_musicin -l 2 -p 1 -b 384 AUDIO.aiff AUDIO.mp2 Randall Hopper