Skip to content

Instantly share code, notes, and snippets.

@Eugene-Shapovalov
Created May 8, 2014 13:43
Show Gist options
  • Save Eugene-Shapovalov/f790278ea44b078cb535 to your computer and use it in GitHub Desktop.
Save Eugene-Shapovalov/f790278ea44b078cb535 to your computer and use it in GitHub Desktop.
Ape files 2 mp3
#!/bin/sh
for ape in *.ape;
do
ffmpeg -i "$ape" -ab 192k "${ape%.*}".mp3
done
#mp3splt -c audiotrack.cue audiotrack.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment