BASH:使用sox裁剪,分割通道和淡出批量的.AIFF

时间:2013-11-15 02:25:42

标签: bash batch-processing sox

我有一套来自http://theremin.music.uiowa.edu/MISpiano.html

的立体声.AIFF钢琴样本

每个样本之前都会有~5秒的静音,并且会消失~30秒的沉默;即它继续远低于我的听力阈值。

我希望削减两端。这将涉及淡出,以避免严重的不连续性。

此外,我只对左声道感兴趣。

如何从OS X终端完成此操作?

π

PS抱着你的马,我将自己回答这个问题:)

1 个答案:

答案 0 :(得分:1)

我们走了:

for filePath in IN/*.aiff
do
    # Trim silence both ends
    #   http://digitalcardboard.com/blog/2009/08/25/the-sox-of-silence/
    ./sox $filePath ./TMP/1_trim.wav silence 1 0.1 1%  1 0.1 0.5%

    # LEFT channel
    #   https://www.nesono.com/node/275
    ./sox TMP/1_trim.wav ./TMP/2_mono.wav remix 1


    # Get length (seconds)
    #   http://stackoverflow.com/questions/4534372/get-length-of-wav-from-sox-output
    #     file_length=`./sox ./TMP/2_mono.wav 2>&1 -n stat | grep Length | cut -d : -f 2 | cut -f 1`
    file_length=`./soxi -D ./TMP/2_mono.wav`

    # amount to truncate
    trunc=$(echo "$file_length*0.75" | bc -l)

    #   http://stackoverflow.com/questions/965053/extract-filename-and-extension-in-bash
   filename=$(basename "$filePath")

    # fade out
    #   http://www.benmcdowell.com/blog/2012/01/29/batch-processing-audio-file-cleanup-with-sox/
    ./sox ./TMP/2_mono.wav ./OUT/$filename fade t 0 $file_length $trunc
done