Mercurial > hg > ape
view aux/resample @ 13:22964a1dc292
Accurate EBU R128 / ITU-R BS.1770 loudness calculation; batch resample bash script
author | Brecht De Man <b.deman@qmul.ac.uk> |
---|---|
date | Tue, 26 Apr 2016 14:54:32 +0200 |
parents | |
children |
line wrap: on
line source
#!/bin/bash for i in *.wav; do sox -G $i -b 24 temp.wav rate -v 96k; mv temp.wav $i; done