Created
November 25, 2015 08:22
-
-
Save up1/37dc0e04badad5cb6f6d to your computer and use it in GitHub Desktop.
VLC :: convert from wma 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
//https://khom.wordpress.com/2010/04/21/convert-mp4-and-flv-video-to-mp3-with-vlc/ | |
for file in //Users/somkiat/Desktop/agile-tour-2015/Ked2/*.wma; | |
do /Applications/VLC.app/Contents/MacOS/VLC -I dummy "$file" --sout="#transcode{acodec=mp3,vcodec=dummy}:standard{access=file,mux=raw,dst=\"$(echo "$file" | sed 's/\.[^\.]*$/.mp3/')\"}" vlc://quit; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment