cpal icon indicating copy to clipboard operation
cpal copied to clipboard

Cross-platform audio I/O library in pure Rust

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

When running the beep example using an ASIO Host, on windows 10, the program segfaults in unsafe code space with the exit code of `0xc0000005, STATUS_ACCESS_VIOLATION`. I am using a...

I was trying to set a fixed buffer size on Windows/WASAPI, but as a result I only get the message that the device doesn't support this configuration, no matter which...

While testing some examples I ran into a runtime error of: `Error: The requested stream configuration is not supported by the device.` I traced through and found that the WinApi's...

bug
platform - windows

I'm trying to compile a bevy minimal example... ``` use bevy::prelude::*; fn main() { App::build().add_plugins(DefaultPlugins).run(); ``` And i'm getting this error ``` $> ./conflict_cay.exe thread 'main' panicked at 'build_output_stream failed...

Looking at this: https://docs.rs/cpal/0.13.1/cpal/enum.SampleFormat.html I see for F32, "The boundaries are (-1.0, 1.0)." If I run the feedback example on my Linux-running laptop, without JACK, the highest value I seem...

question

I’m investigating the use of cpal in `no_std` environment. I don’t have a particular goal (i.e. embedded device) in mind, but it would be cool to do something with audio...

feature request

I'm trying to do Wasapi loopback capture but it's not working: Even though my input stream is spawned, the stream callback never gets called. Why could that be? It prints...

bug
platform - windows
host - wasapi

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...

dependencies

In 0.12 the stream callback is only executed if I call `thread::sleep()` or `loop {}` after `stream.play()`, it doesn't get called if I spawn a winit window after. I had...