Last active
April 13, 2020 19:08
-
-
Save fiskhandlarn/f22dc80d9f5feb5bf96334ed217053e8 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
for f in "$@" | |
do | |
echo "Processing $f file..." | |
ffmpeg -i "$f" -af aformat=s16:44100 "${f%.*}".flac | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment