2个版本

0.1.3 2020年4月4日
0.1.2 2020年2月14日

#27 in #recognition

GPL-3.0 许可证

4.5MB
112K SLoC

Rust 87K SLoC // 0.0% comments C 19K SLoC // 0.1% comments Python 6K SLoC // 0.2% comments Forge Config 300 SLoC // 0.8% comments Batch 165 SLoC Shell 48 SLoC // 0.1% comments

捆绑的aubio库

License: GPL-3.0 Crates.io Package Docs.rs API Docs Travis-CI Status

此包提供了捆绑的 aubio C库,用于与 aubio-rs 包一起使用,当系统安装的库不可用时。

使用方法

您可以将此作为依赖项添加到您的清单中

[dependencies]
aubio-rs = "^0.1"

# Use bundled library to avoid unresolved links
aubio-lib = "^0.1"

接下来,您应该告诉编译器您想使用哪个包

// Either in traditional manner
extern crate aubio_lib;

// Or in Rust2018 manner
use aubio_lib as _;

功能

以下功能可用于自定义库配置

  • shared 强制捆绑共享(或动态)库而不是静态库
  • with-fftw3 启用 fftw3 支持
  • nolink-fftw3 禁用 fftw3 链接
  • shared-fftw3 强制共享 fftw3 链接

依赖项