Skip to content

Instantly share code, notes, and snippets.

@crossdjinn
Last active December 22, 2018 23:15
Show Gist options
  • Save crossdjinn/6af64a0b9b9185e661f664f301802dc8 to your computer and use it in GitHub Desktop.
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
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