Processing math: 0%
Google+

Thursday, June 29, 2017

Sox Mac audio format conversion


mkdir converted
for i in *.aif; do sox -t aif -b 24 i converted/{i%.aif}.wav; done
#-t: to tell sox the input format
#-b: bit depth
#i%.aif: to remove the file name extension
view raw aif_to_wav.sh hosted with ❤ by GitHub

No comments:

Post a Comment