sound_stream
sound_stream copied to clipboard
A Rust audio IO stream in the style of an "Event Iterator" driven by PortAudio.
Hello, I need to write 5 sec from microfone stream into file. Next need to open file then play this. How to do it?
Using rust 1.5.0-nightly (0be1bcd06 2015-10-24) the delta-time parameter given to `output::Builder::run_callback` is always zero, making sounds play forever if you rely on dt. I've been able to track it down...
Currently SoundStream currently offers very limited options for setup - It constructs a duplex, ordered stream with no options to choose any devices other than the defaults. Here I'm going...
[CPAL](https://github.com/tomaka/cpal) This will also allow us to become purely rusty and publish to crates.io (portaudio crate doesn't seem to be active or updating anymore). Before we can do this, we...
Before breaking from the iterator loop, it would be great if the SoundStream returned an `Event::Error(the_error)` when encountering an error internally. This would give the developer a chance to handle...