Please, help to choose solution for converting any mp3 file to special .wav - I'm a newbie with Linux command line tools, so It's hard for me right now.
I need to get wav with 16khz mono 16bit sound properties from any mp3 file. I was trying
ffmpeg -i 111.mp3 -ab 16k out.wav,
but I got wav with the same rate as mp3 (22k).
Please, help to construct right command line
Hit the gear icon right next to the audio file. Select the Audio section and choose WAV. Click on Settings again and choose the new bitrate for your WAV file. Click on Create to finalize the settings made.
kdazzle's solution is almost there - it still output a stereo wav, here is a slightly modified version that generate mono:
ffmpeg -i 111.mp3 -acodec pcm_s16le -ac 1 -ar 16000 out.wav
also, if this is for pre-processing speech data for sphinx 4 see here: Convert audio files for CMU Sphinx 4 input
Try this:
ffmpeg -i 111.mp3 -acodec pcm_s16le -ar 16000 out.wav
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With