Skip to content

Instantly share code, notes, and snippets.

@miloslavnosek
Created October 24, 2021 07:24
Show Gist options
  • Save miloslavnosek/00da6c8ce85e356f50bd5c00cc9dd0fa to your computer and use it in GitHub Desktop.
Save miloslavnosek/00da6c8ce85e356f50bd5c00cc9dd0fa to your computer and use it in GitHub Desktop.
Flac to MP3 320kbps conversion via ffmpeg
#!/bin/bash
for a in ./*.flac; do
< /dev/null ffmpeg -i "$a" -ab 320k -map_metadata 0 -id3v2_version 3 "${a[@]/%flac/mp3}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment