On 6/14/07, Mark Lanctot <
[EMAIL PROTECTED]> wrote:


About the last thing that I could do in Windows which I can't do in
Ubuntu is MP3Gain post-processing.


I used this perl script to generate a shell script, it breaks on special
characters but it got 90% of my albums when I ran it.

#!/usr/bin/perl
while(<>)
{
       chomp;
       s/([\s\(\)\[\]\'])/\\$1/g;
       print "mp3gain -a $_/*.mp3";
       print "\n";
}

Ben
_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/unix

Reply via email to