rodio
rodio copied to clipboard
Rust audio playback library
Similarly (but not the same afaict) to #130, Rodio panics on this trivial example: ```rust if let Some(device) = rodio::default_output_device() { if let Ok(file) = File::open("res/notification_sound_clearly.ogg") { if let Ok(src)...
For the project I am working on we would like to EQ some sound effects. Rodio has a low pass filter (which is labelled as buggy in the docs but...
Quickcheck had a 1.0 release. We should update the dev-dependency to it. There have been attempts in #368 but there were memory allocation errors in CI: ``` test conversions::sample_rate::test::divide_sample_rate ......
I have an Ogg Vorbis file that sounds distorted when played back with rodio over an USB audio device (have tried 2 different ones), but works over the headphone jack...
Is it possible to play surround sound for playback devices that support it? Doing more than 2 channels doesn't seem to do much than having just 2 channels
Hi I'm been trying to get this running on a raspberry pi 1. It has worked reasonably well except for a tiiny patch I had to make to cpal (it...
Currently, `rodio::decoder::Decoder` yields `i16` as an item. Therefore, there are some loss when playing music with higher bit depth, such as 24- or 32-bit signed WAV. This may make some...
I'm building a small toy project using a Pi Zero with a MAX98357 DAC configured with ALSA. Works fine, can stream audio with mpg123 without issues. The barebones example of...
There should be a link to [docs.rs/rodio](https://docs.rs/rodio) in the repo info.
As the title says, when i create a sink, if i stop it and then append a new source it will not play. Would have to create another sink altogether...