Skip to content

Instantly share code, notes, and snippets.

@pauladam
Created February 11, 2012 22:53
Show Gist options
  • Save pauladam/1804864 to your computer and use it in GitHub Desktop.
Save pauladam/1804864 to your computer and use it in GitHub Desktop.
Barebones cd -> mp3 bash script
#!/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