Last active
December 22, 2018 23:15
-
-
Save crossdjinn/6af64a0b9b9185e661f664f301802dc8 to your computer and use it in GitHub Desktop.
Bash, ffmpeg convert any all multimedia in a file into another one/two whatever
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 file in *.flac | |
do | |
ffmpeg -i "$file" -f wav "$file".wav | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment