Skip to content

Instantly share code, notes, and snippets.

@alex-salnikov
Forked from timstermatic/gist:7384516
Last active August 23, 2023 17:18
Show Gist options
  • Select an option

  • Save alex-salnikov/0fc5e1a934c5818fa48112c6f99bde74 to your computer and use it in GitHub Desktop.

Select an option

Save alex-salnikov/0fc5e1a934c5818fa48112c6f99bde74 to your computer and use it in GitHub Desktop.

Revisions

  1. alex-salnikov revised this gist Aug 23, 2023. 1 changed file with 5 additions and 3 deletions.
    8 changes: 5 additions & 3 deletions gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,11 @@
    # install cdparanoia e.g apt-get install cdparanoia

    # rip tracks individually
    # 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
    for t in track{01..18}*.wav; do lame $t; done
  2. @timstermatic timstermatic created this gist Nov 9, 2013.
    9 changes: 9 additions & 0 deletions gistfile1.sh
    Original 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