How about:<br><br>for f in `find /my/mp3/directory | grep .mp3$`; <br>    do mpg321 $f -w raw &amp;&amp; oggenc raw -o `echo $f | sed -e &#39;s/.mp3$/.ogg/&#39;`;<br>done<br><br>or something? (Completely untested, but just an idea). Should be able to leave it and you&#39;ll come back to a load of ogg files in with your mp3 files. Of course if you want to use a new tree I guess you could do...<br>
<br>for f in `find /my/mp3/directory | grep .mp3$`; <br>
    do mpg321 $f -w raw &amp;&amp; oggenc raw -o `echo $f | sed -e &#39;s/mp3\/directory/ogg\/directory/ -e &#39;s/.mp3$/.ogg/&#39;`;<br>
done<br><br>(where /my/mp3/directory is your mp3 music root and /my/ogg/directory is your ogg music root)<br><br>I&#39;m sure I did something like that back in the past, but then ended up just re-ripping them all from CDs so I could avoid lossy-to-lossy conversion.<br>
<br>Cheers<br>Alex<br><br><div class="gmail_quote">2009/8/15 Simon Sleaford <span dir="ltr">&lt;<a href="mailto:simon.sleaford@gmail.com">simon.sleaford@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I&#39;m trying to convert my mp3 collection to ogg, I&#39;ve managed to do a few using Oggconvert <a href="http://oggconvert.tristanb.net/" target="_blank">http://oggconvert.tristanb.net/</a>.
<br><br>I&#39;m happy enough that I&#39;m not losing too much quality wise by
converting from one format to another but it&#39;s a little slow because it
seems to only be able to do one file at a time. <br><br>Can anybody
recommend a program that will do a folder of files or even crawl my
music folder and convert everything while I leave it to it? Preferably looking for something that will leave the originals intact in case of any hiccups before I&#39;ve checked them out.<br><br>Cheers<br><br>Simo.<br>
<br>_______________________________________________<br>
Nottingham mailing list<br>
<a href="mailto:Nottingham@mailman.lug.org.uk">Nottingham@mailman.lug.org.uk</a><br>
<a href="https://mailman.lug.org.uk/mailman/listinfo/nottingham" target="_blank">https://mailman.lug.org.uk/mailman/listinfo/nottingham</a><br></blockquote></div><br>