Skip to content

Instantly share code, notes, and snippets.

@psenough
Created June 23, 2017 01:57
Show Gist options
  • Save psenough/55e4d5aae28de208fc0388e0173bb5f3 to your computer and use it in GitHub Desktop.
Save psenough/55e4d5aae28de208fc0388e0173bb5f3 to your computer and use it in GitHub Desktop.
convert audio file to 44100khz 256kbps mp3 using ffmpeg
#!/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