我想要一個shell腳本,它檢查聲音文件的長度並檢查長度是否比指定長度短。但是我一直在if語句中收到錯誤信息「command not found」。 #!/bin/bash
soundlength=$(soxi -D $1)
enter code here
if [$soundlength < $2]
then
# do something
fi
我猜$ soundlen
每當我嘗試讀取.wav文件時,出現以下錯誤。 我到處搜索,但沒有任何進展。 CODE: import scipy as sp
import matplotlib.pyplot as plt
sr, y = sp.io.wavfile.read(MY_FILENAME)
print sr
錯誤: File "/usr/local/lib/python2.7/dist-packages/sc