Skip to content

Instantly share code, notes, and snippets.

@shaunhey
Created August 26, 2015 03:52
Show Gist options
  • Save shaunhey/eaa337759ad293c850d0 to your computer and use it in GitHub Desktop.
Save shaunhey/eaa337759ad293c850d0 to your computer and use it in GitHub Desktop.
Script to convert all FLAC files in the current folder to 320k MP3 files
#!/bin/sh
# Script to convert all FLAC files in the current
# folder to 320k MP3 files
parallel ffmpeg -i "{}" -ab 320k "{.}.mp3" ::: *.flac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment