Skip to content

Instantly share code, notes, and snippets.

@thomaspeklak
Created November 12, 2010 21:04
Show Gist options
  • Save thomaspeklak/674683 to your computer and use it in GitHub Desktop.
Save thomaspeklak/674683 to your computer and use it in GitHub Desktop.
Batch convert mp3s to mono and lower bitrate
for file in ./*.mp3
do
lame -mm -b64 ${file} ../target_dir/${file}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment