Skip to content

Instantly share code, notes, and snippets.

@aliustaoglu
Created June 20, 2020 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aliustaoglu/8178784d37a3abe4ce459da364bd5985 to your computer and use it in GitHub Desktop.
Save aliustaoglu/8178784d37a3abe4ce459da364bd5985 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Generate the script that converts all wav files inside the folder to ogg
for f in *.wav
do
echo "ffmpeg -i '$f' -c:a libvorbis -qscale:a 3 '$f.ogg'"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment