Created
September 27, 2014 10:54
-
-
Save gerjantd/7f5b22b77dc5b72324c1 to your computer and use it in GitHub Desktop.
Revisions
-
gerjantd created this gist
Sep 27, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ for f in *.m4a; do export fb=`basename "$f" .m4a`; avconv -i "$f" -f mp3 -acodec libmp3lame -ab 192000 -ar 44100 "$fb".mp3; done