Skip to content

Instantly share code, notes, and snippets.

@dw72
Last active April 3, 2017 18:18
Show Gist options
  • Save dw72/80e6a7962f4ae401df0461172d27b74c to your computer and use it in GitHub Desktop.
Save dw72/80e6a7962f4ae401df0461172d27b74c to your computer and use it in GitHub Desktop.
convert all specified media files to mp3
for file in "$@"; do
ffmpeg -i "$file" -vn -ar 44100 -ac 2 -ab 192k -f mp3 "${file%.*}.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment