Skip to content

Instantly share code, notes, and snippets.

@up1
Created November 25, 2015 08:22
Show Gist options
  • Save up1/37dc0e04badad5cb6f6d to your computer and use it in GitHub Desktop.
Save up1/37dc0e04badad5cb6f6d to your computer and use it in GitHub Desktop.
VLC :: convert from wma to mp3
//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