gpt4 book ai didi

audio - 在文件描述符上连续运行aubiopitch

转载 作者:行者123 更新时间:2023-12-02 23:49:53 27 4
gpt4 key购买 nike

我想使用aubiopitch连续输出来自输入源的信号的频率。由于aubiopitch喜欢将其输入作为文件而不是流,因此我尝试使用process substitution:

$ aubiopitch -i <(sox -q -d -t wav -)

我希望它能输出从默认音频输入设备读取的信号的频率。相反,我得到了这个:
./sox WARN wav: Length in output .wav header will be wrong since can't seek to fix it
AUBIO ERROR: source_apple_audio: Failed opening /dev/fd/63, error in ExtAudioFileOpenURL (-40)
AUBIO ERROR: source_wavread: could not find RIFF header in /dev/fd/63
AUBIO ERROR: source: failed creating aubio source with /dev/fd/63 at samplerate 0 with hop_size 256
Error: could not open input file /dev/fd/63

问题似乎不在于 sox,因为此命令可以正常工作:
cat <(sox -q -d -t wav -) > output.wav

它创建了一个 output.wav文件,似乎没有什么问题,但 aubiopitch当然除外:
$ aubiopitch output.wav
Segmentation fault: 11

这里发生了什么? RIFF header 设置的长度错误吗?

如果有问题,我正在运行OSX 10.7.5,并且我重新编译了aubio以使其与我的旧OSX版本一起使用。

最佳答案

$ sox -q -d -t wav - | aubiopitch -i -

使用libsndfile支持 '-' = stdin进行编译时,上述命令可以提供以下输出。
sox WARN wav: Length in output .wav header will be wrong since can't seek to fix it
0.000000 0.000000
0.005805 707.323486
0.011610 [...]

如果使用更多源( avcodecapple_audio)编译了aubio,您将收到更多警告。您可以通过将 stderr重定向到 /dev/null来隐藏这些警告。这是 aubioonset的示例:
$ ( sox -q -d -t wav - | aubioonset -i - ) 2> /dev/null
0.000000
0.096871
0.279297
[...]

关于audio - 在文件描述符上连续运行aubiopitch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26186132/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com