Low-level library for audio input and output in pure Rust.
This library currently supports the following:
Currently supported hosts include:
Note that on Linux, the ALSA development files are required. These are provided
as part of the libasound2-dev
package on Debian and Ubuntu distributions and
alsa-lib-devel
on Fedora.
ASIO is an audio driver protocol by Steinberg. While it is available on multiple operating systems, it is most commonly used on Windows to work around limitations of WASAPI including access to large numbers of channels and lower-latency audio processing.
CPAL allows for using the ASIO SDK as the audio host on Windows instead of WASAPI. To do so, follow these steps:
.zip
from this
link. The version as
of writing this is 2.3.1.~/.asio
).readme
, changes
,
ASIO SDK 2.3
pdf, etc) to the CPAL_ASIO_DIR
environment variable. This is
necessary for the asio-sys
build script to build and bind to the SDK.bindgen
, the library used to generate bindings to the C++ SDK, requires
clang. Download and install LLVM from
here under the "Pre-Built Binaries"
section. The version as of writing this is 7.0.0.bin
directory to a LIBCLANG_PATH
environment variable. If
you installed LLVM to the default directory, this should work in the command
prompt:
setx LIBCLANG_PATH "C:\Program Files\LLVM\bin"
rust-bindgen
uses the C++ tool-chain when generating
bindings to the ASIO SDK. As a result, it is necessary to load some
environment variables in the command prompt that we use to build our project.
On 64-bit machines run:
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
On 32-bit machines run:
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
Note that, depending on your version of Visual Studio, this script might be
in a slightly different location.Select the ASIO host at the start of our program with the following code:
```rust let host;
{ host = cpal::hostfromid(cpal::HostId::Asio).expect("failed to initialise ASIO host"); } ```
If you run into compilations errors produced by asio-sys
or bindgen
, make
sure that CPAL_ASIO_DIR
is set correctly and try cargo clean
.
Make sure to enable the asio
feature when building CPAL:
cargo build --features "asio"
or if you are using CPAL as a dependency in a downstream project, enable the feature like this:
toml
cpal = { version = "*", features = ["asio"] }
In the future we would like to work on automating this process to make it easier, but we are not familiar enough with the ASIO license to do so yet.
Updated as of ASIO version 2.3.3.