Skip to content

Instantly share code, notes, and snippets.

@foolishway
Created May 20, 2020 10:53
Show Gist options
  • Save foolishway/e53c2b81375551e93db6eda1ec6732ef to your computer and use it in GitHub Desktop.
Save foolishway/e53c2b81375551e93db6eda1ec6732ef to your computer and use it in GitHub Desktop.
#!/bin/bash
for i in *.ogg;
do ffmpeg -i "$i" -f mp3 "${i%.*}.mp3";
done
rm *.ogg;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment