rodio
rodio copied to clipboard
Rust audio playback library
Your example not working make sure u update it correctly ! 
To reproduce: Run `cargo run --example spatial`. Notice the sound starting from the right. Run `cargo run --example spatial --release`. Notice the sound starting from the left. Related to this...
Calling `skip_duration` on a source seems to block the thread for a completely unacceptable amount of time (several seconds, often double-digit). My guess is that this is due to how...
The current implementation of size_hint for ChannelVolume is broken for two reasons: #### 1. The number of samples in input and result should be the same, but each sample may...
This PR is my continuation of #287 where I've firstly rebased against the lastest master (as of writing) as well as reworked the clear() function to act more as described...
Hello, I like rodio but am struggeling to play audio from a network stream. ## Problem I have a stream of type `futures_util::StreamExt` which has been fetched using the reqwest...
Hi, I filed [this bug](https://github.com/librespot-org/librespot/issues/1047) on the librespot project, however the folks there said that it seems to be an issue with rodio, not with librespot. I've paste a handful...
See title, could you add support for tokio? For example: ```rust use tokio::io::BufReader; let file = BufReader::new(.....); let source = Decorder::new(file).unwrap(); // error, because trait bound is `std::io::Read`, not `tokio::io::AsyncRead`...
Playing sounds on the left channel works fine, but if I try to play something on the right channel, it plays on both (but maybe with slightly less volume on...