12 breaking releases

0.14.0 Oct 25, 2023
0.13.0 Jul 19, 2023
0.12.0 Mar 28, 2022
0.9.0 Nov 29, 2021
0.3.0 Jul 8, 2021

#204 in Windows APIs

Download history 4/week @ 2023-12-25 117/week @ 2024-01-01 124/week @ 2024-01-08 86/week @ 2024-01-15 121/week @ 2024-01-22 53/week @ 2024-02-12 24/week @ 2024-02-19 43/week @ 2024-02-26 8/week @ 2024-03-04

128 downloads per month

MIT license

73KB
1.5K SLoC

Wasapi bindings for Rust

The aim of this crate is to provide easy and safe access to the Wasapi API for audio playback and capture.

The presented API is all safe Rust, but structs and functions closely follow the original Windows API.

For details on how to use Wasapi, please see the Windows documentation.

Bindings are generated automatically using the windows crate.

Supported functionality

These things have been implemented so far:

  • Audio playback and capture
  • Shared and exclusive modes
  • Event-driven buffering
  • Loopback capture
  • Notifications for volume change, device disconnect etc

Included examples

Example Description
playsine Plays a sine wave in shared mode on the default output device.
playsine_events Similar to playsine but also listens to notifications.
playnoise_exclusive Plays white noise in exclusive mode on the default output device. Shows how to handle HRESULT errors.
loopback Shows how to simultaneously capture and render sound, with separate threads for capture and render.
record Records audio from the default device, and saves the raw samples to a file.
devices Lists all available audio devices and displays the default devices.

Dependencies

~154MB
~2.5M SLoC