-
-
Save alex-salnikov/0fc5e1a934c5818fa48112c6f99bde74 to your computer and use it in GitHub Desktop.
Revisions
-
alex-salnikov revised this gist
Aug 23, 2023 . 1 changed file with 5 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,11 @@ # install cdparanoia e.g apt-get install cdparanoia # MacOS # brew install lame # brew install cdparanoia # copy all tracks into separate '.wav' files cdparanoia -B # convert to mp3 in a loop for t in track{01..18}*.wav; do lame $t; done -
timstermatic created this gist
Nov 9, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # install cdparanoia e.g apt-get install cdparanoia # rip tracks individually cdparanoia -B # convert to mp3 in a loop for t in track{01..18}*.wav; do lame $t; done