Created
May 23, 2023 05:15
-
-
Save imZack/c1f61a64612c3d842d2b14e53a4ebc67 to your computer and use it in GitHub Desktop.
This file contains 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
#/bin/bash | |
# apt-get update && apt-get install cdparanoia lame | |
cdparanoia -B && \ | |
for file in *.wav; do lame -V0 "$file" "${file/%wav/mp3}"; done && \ | |
rm *.wav && \ | |
eject |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment