Created
May 8, 2014 13:43
-
-
Save Eugene-Shapovalov/f790278ea44b078cb535 to your computer and use it in GitHub Desktop.
Ape files 2 mp3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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