2014-12-21 40 views
0

如何使用for循環使用soundstretch管道傳輸有關BPM掃描的信息?管道聲音回放結果

我嘗試這樣做:

for f in *.wav ; do soundstretch "$f" -bpm ; done >> Data 

它顯示在終端上的數據,但它並沒有將其保存到文件中。

非常感謝!

回答

1

已經發現:

for f in *.wav ; do soundstretch "$f" -bpm ; done 2> Data