Skip to content

Instantly share code, notes, and snippets.

@ecovictoriano
Created December 27, 2017 23:49
Show Gist options
  • Save ecovictoriano/4b9cb0ed1157de8322be5adcaee55a6c to your computer and use it in GitHub Desktop.
Save ecovictoriano/4b9cb0ed1157de8322be5adcaee55a6c to your computer and use it in GitHub Desktop.
Convert MP3 to WAV using FFMPEG
ffmpeg -i AUDIOFILE.mp3 -c:a pcm_s16le AUDIOFILE_OUTPUT.wav
# we can add:
# -ac 1 to convert to mono
# -ar 16000 to convert to 16000 sample rate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment