Created
December 22, 2020 21:37
-
-
Save JakeTrock/47b8af098ceb84df0cab89d10ae58e08 to your computer and use it in GitHub Desktop.
converts a bunch of ogg files to flac and normalizes them
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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