Oh thanks for that Gabriel!<br>Scott, I might look into soundconverter, just to see what I can do with it.<br><br>Andrew.<br><br><div class="gmail_quote">On Fri, Jan 29, 2010 at 9:26 PM, Gabriel M. Beddingfield <span dir="ltr">&lt;<a href="mailto:gabrbedd@gmail.com">gabrbedd@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im"><br>
<br>
On Fri, 29 Jan 2010, Andrew C wrote:<br>
<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hey all,<br>
<br>
Anyone know any quick ways to resample a large amount of .wav files with<br>
spaces in them from 48000hz to 44100hz while still keeping the same wav<br>
names?<br>
</blockquote>
<br></div>
Using sox and the command line, you could do it like this:<br>
<br>
$ cd /path/to/wav/files<br>
$ for N in * ; do \<br>
    sox &quot;$N&quot; -r 44100 &quot;/path/to/resampled/files/$N&quot; ; \<br>
  done<br>
$<br>
<br>
hth,<br><font color="#888888">
gabriel<br>
<br>
</font></blockquote></div><br>