1

我希望将 Vamp Plugins 文件夹与 Sonic Annotator 放在同一文件夹中,而不是下面的默认位置。如何为命令行使用指定这个?

Linux:   /usr/local/lib/vamp
OS/X:    /Library/Audio/Plug-Ins/Vamp
Windows: C:\Program Files\Vamp Plugins
Solaris: /usr/local/lib/vamp
4

1 回答 1

1

Linux 和 macOS 在终端窗口中使用 bash:

$ export VAMP_PATH=/path/to/plugin/directory

$声波注释器-l

(或您想要的任何声音注释器选项)

使用命令提示符的 Windows:

设置 VAMP_PATH=/path/to/plugin/directory

声波注释器-l

使用 PowerShell 的 Windows:

$env:VAMP_PATH = "/path/to/plugin/directory"

& 声波注释器 -l

请注意,在所有情况下,将路径设置为“。” 将使 Sonic Annotator 在您运行时从当前工作目录读取插件。如果您在同一目录中有 plugins + sonic-annotator 二进制文件,您可以 cd 到该目录并运行(在 bash 中)单线

$ VAMP_PATH=。./sonic-annotator -l

于 2020-03-02T04:45:57.983 回答