[Gllug] batch convert

David Irvine Maillist at glasgownet.com
Tue Jan 28 19:27:38 UTC 2003


> > On Jan 28 2003, Ashley wrote:
> > > Anybody know of a program to batch-resample mp3s?
> >
> > man find  (see esp. the -exec option)

Alternatively, 

you can use some bash scripting


for i in  *.mp3
do
resample_mp3_application $i
done


or if you have a file containing a list of files

files='cat file_containing_files'

for file in $files
do
resample_mp3_application $files
done


Hope that helps

David






-- 
Gllug mailing list  -  Gllug at linux.co.uk
http://list.ftech.net/mailman/listinfo/gllug




More information about the GLLUG mailing list