Created
December 27, 2017 23:49
-
-
Save ecovictoriano/4b9cb0ed1157de8322be5adcaee55a6c to your computer and use it in GitHub Desktop.
Convert MP3 to WAV using FFMPEG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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