Skip to content

Instantly share code, notes, and snippets.

@richtaur
Created January 8, 2017 22:43
Show Gist options
  • Save richtaur/3fd09987801988451e35bda6a2545548 to your computer and use it in GitHub Desktop.
Save richtaur/3fd09987801988451e35bda6a2545548 to your computer and use it in GitHub Desktop.
#!/bin/bash
FILES=*.wav
for f in $FILES
do
#echo "ffmpeg -i $f ${f/wav/ogg}"
ffmpeg -i $f ${f/wav/ogg}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment