https://github.com/whitequark/samplerate-rs
Rust bindings for libsamplerate
https://github.com/whitequark/samplerate-rs
Last synced: 10 months ago
JSON representation
Rust bindings for libsamplerate
- Host: GitHub
- URL: https://github.com/whitequark/samplerate-rs
- Owner: whitequark
- License: other
- Created: 2019-11-01T11:05:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-01T15:49:31.000Z (about 6 years ago)
- Last Synced: 2025-03-02T12:39:52.487Z (10 months ago)
- Language: Rust
- Homepage: http://www.mega-nerd.com/libsamplerate/
- Size: 3.57 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# samplerate-rs
Bindings for the [libsamplerate][] (aka Secret Rabbit Code) audio sample rate converter.
[libsamplerate]: http://www.mega-nerd.com/libsamplerate/
## Dependencies
Add this to your `Cargo.toml`:
```toml
[dependencies]
samplerate = "0.1"
```
To link to the system libsamplerate instead of the vendored one, use the `samplerate-sys/system` feature:
```toml
[dependencies]
samplerate-sys = { version = "0.1", features = ["system"] }
```
These bindings do not depend on `std`, and libsamplerate does not depend on anything but the C standard library.
## Usage
See documentation.
## License
[2-clause BSD](LICENSE.txt)