Skip to content

Instantly share code, notes, and snippets.

@yassinagx
Forked from ksu006/flac-to-mp3.sh
Created March 4, 2022 13:09
Show Gist options
  • Save yassinagx/daaf24ef0111c642ab9be9acb9d7a4bd to your computer and use it in GitHub Desktop.
Save yassinagx/daaf24ef0111c642ab9be9acb9d7a4bd to your computer and use it in GitHub Desktop.
Script to convert .flac audio files into 320kbps .mp3 files (need flac and lame installed)
#!/bin/sh
for file in *.flac; do flac -cd "$file" | lame -h -b 320 - "${file%.flac}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment