Skip to content

Instantly share code, notes, and snippets.

@smuuf
Last active March 28, 2020 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smuuf/a89b4ea03bf5343ee85638ca10475ce3 to your computer and use it in GitHub Desktop.
Save smuuf/a89b4ea03bf5343ee85638ca10475ce3 to your computer and use it in GitHub Desktop.
WAV to MP3 bash function
# Best to put this in your .bashrc
# .wav extension will be replaced with .mp3 automatically.
# Usage: wavtomp3 lorem_ipsum.wav
function wavtomp3() {
ffmpeg -i "$1" -vn -ar 44100 -ac 2 -b:a 320k "${1/.wav/.mp3}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment