Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/loganintech/nvafx_rs

Rust Bindings to Nvidia Maxine AudioFX
https://github.com/loganintech/nvafx_rs

Last synced: about 22 hours ago
JSON representation

Rust Bindings to Nvidia Maxine AudioFX

Awesome Lists containing this project

README

        

# NVAFX_RS

Rust bindings to the Nvidia Maxine Audio FX Engine (Powering Nvidia Broadcast)

### Compilation

1. Download the Nvidia Maxine Audio Effects SDK: https://developer.nvidia.com/maxine-getting-started#audio
2. Move the included `nvafx` folder to the root of this project. Your directory tree should look like the diagram below

```
.
├── bindings.rs
├── build.rs
├── Cargo.lock
├── Cargo.toml
├── nvafx
│ ├── include
│ │ └── nvAudioEffects.h
│ └── lib
│ ├── libnv_audiofx.so -> libnv_audiofx.so.1
│ ├── libnv_audiofx.so.1 -> libnv_audiofx.so.1.0.0
│ └── libnv_audiofx.so.1.0.0
└── src
├── lib.rs
└── main.rs

```