cpal icon indicating copy to clipboard operation
cpal copied to clipboard

Cross-platform audio I/O library in pure Rust

Results 259 cpal issues
Sort by recently updated
recently updated
newest added

On Linux / ALSA (via PulseAudio), the first time the audio callback is called after the stream is started, the timestamp contains nonsensical values: ``` fn main() { // Open...

I'm trying to make a simple synthesizer using cpal, but I am getting strange artifacts/modulations when playing back a simple sine wave. It initially plays the correct tone, but after...

Hi, I've run into a lot of Xruns recently when using a specific blocksize/samplerate setting ... it was driving me crazy until I found that the "beep" example provided in...

https://github.com/RustAudio/coreaudio-rs/compare/1de4dc04a858dba3bc1b170ce980ee2e2825f864..163f1a09f0afdc80b01f3cba8956c207aa3a1cbd Tentative, just updating the version & API usage.

Hi there, first of all thank you SO MUCH for maintaining this library! I'm running into what might be a bug on macOS. I have an external USB audio device...

Removes [ansi-html](https://github.com/Tjatse/ansi-html). It's no longer used after updating ancestor dependency [webpack-dev-server](https://github.com/webpack/webpack-dev-server). These dependencies need to be updated together. Removes `ansi-html` Updates `webpack-dev-server` from 3.10.3 to 3.11.3 Release notes Sourced from...

dependencies

This makes it possible for the library client to handle situations where the host takes too long to respond or even blocks forever, eg. a retry can be applied. if...

Fixes #554 I forked #651 and started finishing some stuff To-do list: - [ ] device enumeration - [ ] stream support - [ ] check on all smart pointers...

When i try to open a stream with supported settings i just get: ALSA lib pcm_dsnoop.c:566:(snd_pcm_dsnoop_open) unable to open slave this is the stream config i used: StreamConfig { channels:...

I am using Pipewire as the sound daemon, the setting looks like this: ``` +------------+ | My App | +------------+ | Rodio | +------------+ | CPAL | +-----+------+ | |...