Advertisement
metalx1000

Music CD Ripping notes

Oct 20th, 2017
764
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.45 KB | None | 0 0
  1. #Ripping Music CDs in Linux from the shell
  2.  
  3. #abcde - Get's Music Info such as artist, album, and title
  4. #install abcde
  5. sudo apt install abcde
  6.  
  7. #rip to ogg format
  8. abcde
  9.  
  10. #to rip to mp3 you need to install eyed3
  11. sudo apt install eyed3
  12.  
  13. #then tell abcde to output to mp3
  14. abcde -o mp3
  15.  
  16. #abcde uses cdparanoia to rip the audio as wav
  17. #you can do this yourself
  18. #rip a cd
  19. cdparanoia -B
  20.  
  21. #example of ripping tracks 1 and 2
  22. cdparanoia -B -- 1-2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement