8 releases

0.2.7 Jan 17, 2023
0.2.6 Jan 4, 2023
0.2.5 Sep 4, 2022
0.2.4 Aug 29, 2022
0.1.0-alpha.1 Dec 23, 2020

#103 in Audio

Download history 1082/week @ 2023-11-20 736/week @ 2023-11-27 624/week @ 2023-12-04 832/week @ 2023-12-11 1002/week @ 2023-12-18 690/week @ 2023-12-25 417/week @ 2024-01-01 958/week @ 2024-01-08 831/week @ 2024-01-15 782/week @ 2024-01-22 532/week @ 2024-01-29 894/week @ 2024-02-05 968/week @ 2024-02-12 1115/week @ 2024-02-19 1127/week @ 2024-02-26 1177/week @ 2024-03-04

4,603 downloads per month
Used in 4 crates (3 directly)

MIT/Apache

1MB
2.5K SLoC

quad-snd

High-level, light-weight, and opinionated audio library.

  • Web: WebAudio
  • Android: OpenSLES
  • Linux: Alsa
  • macOS: CoreAudio
  • Windows: Wasapi
  • iOS: CoreAudio

Being high-level enough allows quad-snd to use very different approaches to each backend. For example, for WebAudio all the playback and mixing is based on Audio nodes, while in OpenSLES quad-snd itself is responsible for mixing.

quad-snd lacks lots of features and the best way to use the library - either fork a repo and fine-tune it for your needs or just copy-paste some code from certain audio backends.

Biggest difference from any other sound library in rust:
quad-snd is small. Each backend implementation is ~300LoC code and is self sufficient - you can copy-paste the whole thing and run it, (almost)no common code, dependencies or anything like that would be required.

The only dependency is audrey. audrey helps backends that do not have file parsing functionality (all the platforms but web) to get bytes out of encoded .wav/.ogg. When web is not required - getting rid of audrey and use anything else(or nothing at all) for audio decoding is a super easy fix.

Attribution

While building quad-snd I looked into the implementation of the following libraries:

https://github.com/floooh/sokol/blob/master/sokol_audio.h
https://github.com/norse-rs/audir
https://github.com/unrust/uni-snd

Dependencies