rodio
rodio copied to clipboard
Rust audio playback library
When using `ChannelVolume` with `u16` samples, the output is overloaded and clipped. If I print the output samples next to the input ones, it appears that `0x8000` is consistently added...
I'm getting a thread panic when trying to start a new audio stream. The full error message reads ``` thread 'main' panicked at 'build_output_stream failed with all supported formats: FormatNotSupported'...
I tried out the spatial example and noticed that, as the volume decreases, the sound pans back to the center again and becomes mono. This doesn't seem correct, I imagine...
When playing a mono ogg file that is a different sample rate than your output device's through `ChannelVolume` the audio switches between the left and right channels. (I think it...
I'm in the process of writing a player that gets it's audio data from HTTP requests and would like to do so using rodio. The documentation only mentions playing audio...
Hi, I would like to get tags of the FLAC file I'm reading. Claxon FlacReader has a method for that. https://docs.rs/claxon/0.4.2/claxon/struct.FlacReader.html#method.tags However, I cannot find a way in rodio to...
This is a feature request for true gapless playback... It seems that there is still a small silence between tracks if I add two mp3-Files as `Source`s to a `Sink`...
https://docs.rs/sample/0.10.0/sample/ https://github.com/RustAudio/sample The common traits int his crate seem like they would be helpful for making several tasks more straight forward.
This is one of the two issues found in #201. With the fix in #202 what still occurs is when the input sinewave is 48000 (the default) and the automatically...
This is one of the two issues found in https://github.com/tomaka/rodio/issues/201. There's random noise that creeps in as the float32 shifts exponent sizes as shown in the image below. The image...