Skip to content

Instantly share code, notes, and snippets.

@JakeTrock
Created December 22, 2020 21:37
Show Gist options
  • Save JakeTrock/47b8af098ceb84df0cab89d10ae58e08 to your computer and use it in GitHub Desktop.
Save JakeTrock/47b8af098ceb84df0cab89d10ae58e08 to your computer and use it in GitHub Desktop.
converts a bunch of ogg files to flac and normalizes them
for f in *.ogg; do ffmpeg -i "${f%}" "${f//-/}.flac"; done
ffmpeg-normalize *.mp3 -c:a libmp3lame -b:a 320k -ext mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment