sound_stream icon indicating copy to clipboard operation
sound_stream copied to clipboard

A Rust audio IO stream in the style of an "Event Iterator" driven by PortAudio.

Results 6 sound_stream issues
Sort by recently updated
recently updated
newest added

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...

draft
discussion

[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...