Created
September 23, 2016 03:43
-
-
Save darktef/53db9956a9172377f37ae488d8511809 to your computer and use it in GitHub Desktop.
Fish - ffmpeg&lame - convert m4a to mp3
This file contains 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
for f in *.m4a | |
set name (string trim --right --chars=.m4a $f) | |
echo $name | |
ffmpeg -i $f -acodec libmp3lame -b:a 320k $name.mp3 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ref: