On Sat, Aug 10, 2002 at 10:02:39AM -0600, [EMAIL PROTECTED] wrote: > 66.37.140.181/orig.wav > If I try to encode it with LAME I just get noise. > If I use soundforge to resample it to 32khz, then lame can encode it > just fine.
looks like some "unusual" (non-)pcm data file to me. whatever - i'm not an expert on this. > > I need to convert files like these in a scripted, command-line > environment... anyone know of a windows 2000 compatible command line > utility to resample wav files and/or is there a magic parameter that > will allow me to encode that file? no problem using linux: "sox orig.wav -w ori2.wav" and "lame ori2.wav orig.mp3" worked fine, but produced an MPEG-2.5 layer III file (MPEG-1 layer III needs at least a samplerate of 32khz according to lame-docs). if you want mpeg-1 layer III use "sox orig.wav -r 32000 -w ori2.wav" to resample (seems to work better than mpeg-2.5 to me, but files get bigger). of course this was linux now. for windows 2000 (are you sure you don't want linux :) check out http://sourceforge.net/projects/sox/ for the sox-win package. i guess there should not be great differences and it should be no problem to do the same with windows-commandline. regards wernfried -- -> Wernfried Haas - [EMAIL PROTECTED] / [EMAIL PROTECTED] -> Homepage: http://xover.mud.at/~amnenion -> Beutelland: http://bl.mud.at _______________________________________________ mp3encoder mailing list [EMAIL PROTECTED] http://minnie.tuhs.org/mailman/listinfo/mp3encoder
