| Odes�latel: Bogdan Burdalescu <[EMAIL PROTECTED]> | I want to convert a wav file into mp3. So, I | downloaded the lame-3.92. | The Example.cpp from Dll folder can be used to convert | a wav file (the only format: 44,1KHZ, 16-bit, Stereo) | into a mp3 file. | But I want to convert any wav (format settings: 11KHz, | 22KHz, 44,1KHz, Mono, Stereo, 8-bit, 16-bit) in mp3. | Any solutions?
lame -b 16 -m m -a file11kHzmono.wav file11kmono.mp3 lame -b 32 file11kHzstereo.wav file11kstereo.mp3 -b specifies bitrate -m m -a specifies "safety" encoding into mono (some versions of lame produce 2x sllloowwwed output without that) With 8 bits I am not sure if LAME handle it, so try tu use SOX (search it at www.freshmeat.net) Regards JL. _______________________________________________ mp3encoder mailing list [EMAIL PROTECTED] http://minnie.tuhs.org/mailman/listinfo/mp3encoder
