cpal
cpal copied to clipboard
Cross-platform audio I/O library in pure Rust
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...
[WASAPI] Using fixed buffer size when the only available output config shows 'Unknown' buffer size ?
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...
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...
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...
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...
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...
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...