如何使用 crepe 模块中的 --step-size 选项?

How do I use the --step-size option in the crepe module?

我正在为一个 Python 项目使用绉纱。该模块的文档提到有一个 --step-size 命令可以让您更改模块分析音高的频率。不过,我是 python 的新手,我不确定将此命令放在我的程序中的什么位置才能执行此操作。

可以在console/terminal/bash/cmd.exe中使用

crepe --step-size 30 audio_file.wav 

python -m crepe --step-size 30 audio_file.wav 

您不能直接在脚本中使用它。如果某些函数使用类似的参数,您将不得不检查文档。

或者您必须获取 crepe 源代码并查看它如何使用来自 --step-size 的值。


编辑:

深入挖掘 source code 我看到:

get_activation( ..., step_size=10)

predict( ..., step_size=10)

process_file( ..., step_size=10)

看来你可以在所有这些函数中使用这个值。