wasapi-rs icon indicating copy to clipboard operation
wasapi-rs copied to clipboard

Simple Wasapi bindings for Rust

Results 9 wasapi-rs issues
Sort by recently updated
recently updated
newest added

I've tried a first pass at addressing Issue https://github.com/HEnquist/wasapi-rs/issues/26 as I was interested in the same functionality. The wrapper approach is a bit clunky but I couldn't see an easy...

The following method from `AudioCaptureClient` is public "safe" method. However, if the user passes in an integer 'bytes_per_frame' that is incorrect/too-large the method will construct an incorrect length buffer slice...

Hi, thanks to the maintainers of this crate, it was a great help for me in developing a recent side project. I was wondering if there was any plans to...

Hi Henrik, I'd like to be able to list out all processes currently outputting audio. It looks like the best way to do this is to access the `IAudioSessionManager2` and...

The callback passed to `register_session_notification` is not guaranteed to run on the same thread that calls `RegisterAudioSessionNotification` - in fact, in practice I _never_ observe this happening. Therefore, in order...

As I needed to mix multiple streams I needed the timing information. For backwards compatibility, this PR more or less simply duplicates the existing method and additionally returns the timing...

Hi Henrik, Thanks a lot for this crate, it's been super helpful! Currently, when recording from a device, if that device gets disconnected (e.g. a USB microphone gets unplugged), the...