Created
February 11, 2012 22:53
-
-
Save pauladam/1804864 to your computer and use it in GitHub Desktop.
Barebones cd -> mp3 bash script
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 | |
cdparanoia -B | |
ls | while read fn; do lame $fn; done; | |
mp3wrap -v album.mp3 *.mp3 | |
mp3val album_MP3WRAP.mp3 -f -nb | |
mv album_MP3WRAP.mp3 album.mp3 | |
cp album.mp3 ~/Dropbox/Public/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment