rodio icon indicating copy to clipboard operation
rodio copied to clipboard

Rust audio playback library

Results 233 rodio issues
Sort by recently updated
recently updated
newest added

To reproduce this issue, try following the music_wav example with a 2-channel WAV file with audio within the first ~11ms. Record the audio output and compare with the input. Instead...

Examples that use ogg files still run, but no longer produce sound. Based on my testing, this problem seems to have been introduced in #753.

bug

I don't know if this behavior is intended, but because of that i can't keep an actual `pos` value for my own use, because when `Sink` is emptied `get_pos` still...

As the title says. I only tested it with symphonia and mp4 data.

bug

`cpal::Stream` is not send on Mac. I need microphone to be send. This 'solves' the non-send stream by parking it on a separate thread.

https://github.com/RustAudio/rodio/security/dependabot/2 Impact on rodio: low Our default is symphonia which has no such vulnerabilities. Possible resolutions - remove minimp3, symphonia covers all use-cases. The only reason to keep minimp3 is...

dependencies

While reviewing real-time issues in the source code of a custom `Source`, which uses `UniformSourceIterator`, RT-sanitizer noticed the following call to `free`, which is not real-time safe: ``` ==3137==ERROR: RealtimeSanitizer:...

See discussion (on design, features and possible dependencies) in code review here: https://github.com/RustAudio/rodio/pull/790

enhancement

`Source`s in rodio get queried by the `OutputStream`. That means that the stream calls the next method on a `Source`. Only then can the `Source` do something, like call next...

Hello, thanks for rodio! I've been playing with rodio in https://github.com/martinetd/fuurin and one thing that's been annoying me is that even with all sources paused, just having an OutputStream present...