Skip to content

Instantly share code, notes, and snippets.

@azet
Created February 18, 2014 12:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azet/9069927 to your computer and use it in GitHub Desktop.
Save azet/9069927 to your computer and use it in GitHub Desktop.
convert .flac to .mp3 for iPhone itunes bullshit, thx to @zeha
find . -iname '*.flac' -exec mkdir -p "converted/{}" \; -exec ffmpeg -i "{}" -q:a 1 "converted/{}.mp3" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment