unnieversal/crates/pvoc-rs/README.md

29 lines
730 B
Markdown
Raw Normal View History

2021-07-24 16:40:59 +00:00
# fork
this is a minor fork that adds a `set_sample_rate` method. i'm too lazy to open a pr and stuff
upstream at https://github.com/nwoeanhinnogaehr/pvoc-rs
# pvoc-rs
A phase vocoder written in Rust.
### Example usage
```rust
use pvoc::{PhaseVocoder, Bin};
let mut pvoc = PhaseVocoder::new(1, 44100.0, 256, 4);
pvoc.process(&input_samples,
&mut output_samples,
|channels: usize, bins: usize, input: &[Vec<Bin>], output: &mut [Vec<Bin>]| {
for i in 0..channels {
for j in 0..bins {
output[i][j] = input[i][j]; // change this!
}
}
});
```
Check out [pvoc-plugins](https://github.com/nwoeanhinnogaehr/pvoc-plugins) for some LADSPA plugins that use this library.