Skip to content

Instantly share code, notes, and snippets.

@sayoder
Created January 2, 2024 17:43
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 sayoder/5c2187002498966db53571ca51e9e170 to your computer and use it in GitHub Desktop.
Save sayoder/5c2187002498966db53571ca51e9e170 to your computer and use it in GitHub Desktop.
#!/bin/bash
shopt -s globstar
for a in **/*.flac; do
ffmpeg -i "$a" -qscale:a 0 "${a[@]/%flac/mp3}" && rm "$a"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment