我正在使用https://github.com/scaperot/the-BPM-detector-python/blob/master/bpm_detection/bpm_detection.py,如何输入音频文件?

时间:2019-08-26 18:51:19

标签: python input

我正在使用以下代码来获取WAV文件的BPMS,但是如何输入音频文件?

我尝试运行

    bpm_detection.py --filename

但出现IO错误

主要功能如下:

    if __name__ == '__main__':
        parser = argparse.ArgumentParser(description='Process .wav file to 
    determine the Beats Per Minute.')
        parser.add_argument('--filename', required=True,
               help='.wav file for processing')
        parser.add_argument('--window', type=float, default=3,
               help='size of the the window (seconds) that will be scanned to determine the bpm.  Typically less than 10 seconds. [3]')

        args = parser.parse_args()
        samps,fs = read_wav(args.filename)

1 个答案:

答案 0 :(得分:0)

使用

python file.py --filename file.wav

python file.py --filename C:\path\path\test.wav

python file.py --filename C:\\path\\path\\test.wav

python file.py --filename ./test.wav