I noticed a distinct popping sound when pausing audio playback in rodio that doesn't occur in any media players I tried with same audio files. This happens both in the development preset and release preset.
I create my Player like so:
let handle = rodio::DeviceSinkBuilder::open_default_sink().unwrap();
let player = Player::connect_new(handle.mixer());
And this is how I open my audio sources:
let file = File::open(path).unwrap();
let source = Decoder::try_from(file).unwrap();
player.append(source);
Rodio 0.22.2 with default features and the "64bit" feature enabled.
I noticed a distinct popping sound when pausing audio playback in rodio that doesn't occur in any media players I tried with same audio files. This happens both in the development preset and release preset.
I create my
Playerlike so:And this is how I open my audio sources:
Rodio 0.22.2 with default features and the "64bit" feature enabled.