Skip to content

Instantly share code, notes, and snippets.

@imZack
Created May 23, 2023 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imZack/c1f61a64612c3d842d2b14e53a4ebc67 to your computer and use it in GitHub Desktop.
Save imZack/c1f61a64612c3d842d2b14e53a4ebc67 to your computer and use it in GitHub Desktop.
#/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