Created
October 2, 2012 16:00
-
-
Save boxxxie/3820403 to your computer and use it in GitHub Desktop.
converting .ape files to .flac with vlc in ubuntu
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
for ape_file in *.ape; do | |
file_name="${ape_file%.*}" | |
vlc "$ape_file" --no-sout-video --sout '#transcode{acodec=flac}:std{access=file,mux=raw,dst='"$file_name.flac" vlc://quit | |
done | |
#i know that there is an unclosed bracket, however when i close it it is added to the file name (sometimes). i just don't care. someone fix this if they find it anything useful. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment