Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/loganintech/nvafx_rs
- Owner: loganintech
- Created: 2021-05-05T08:25:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-05T08:52:15.000Z (over 3 years ago)
- Last Synced: 2024-10-18T06:53:26.737Z (3 months ago)
- Language: Rust
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```