Skip to content

Instantly share code, notes, and snippets.

@dromer
Created March 29, 2016 21:56
Show Gist options
  • Save dromer/69a3fc12dcffbadcb7cdd11f975b5a40 to your computer and use it in GitHub Desktop.
Save dromer/69a3fc12dcffbadcb7cdd11f975b5a40 to your computer and use it in GitHub Desktop.
convert mod files to mp3s
#! /bin/bash
for f in $(ls *.MOD);
do
xmp -o - -d wav "$f" | avconv -i - -b 320k "$f.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment