Created
June 23, 2017 01:57
-
-
Save psenough/55e4d5aae28de208fc0388e0173bb5f3 to your computer and use it in GitHub Desktop.
convert audio file to 44100khz 256kbps mp3 using ffmpeg
This file contains 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
#!/bin/bash | |
ffmpeg -i "$1" -vn -ar 44100 -ac 2 -b:a 256k -f mp3 "44100_${1}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment