Using the Crates.io Version of Rodio the audio plays perfectly fine on Windows with ``` SpeakersBuilder::new() .default_device() .unwrap() .default_config() .unwrap(); ``` however when using the Git repo version the audio is just pure crackling and popping noises. https://github.com/user-attachments/assets/8506f55f-4de5-4bbd-96cb-cb0d4530cf5c the above example is using git = "https://github.com/RustAudio/rodio", rev = "a359d2a" the is the working Example using the Crates.io Version https://github.com/user-attachments/assets/6f38ae6c-753f-43c8-a531-8359b308f642 Also I noticed in the Crates Version I can do ``` .try_buffer_duration(Duration::from_millis(1)) .unwrap() .try_sample_rate(SampleRate::new(44100).expect("should never fail...")) .unwrap() ``` but if i try this in the main branch it panics saying unsupported device even though it worked before.... Please let me know if you have any questions.
Using the Crates.io Version of Rodio the audio plays perfectly fine on Windows with
however when using the Git repo version the audio is just pure crackling and popping noises.
20260717-1546-43.1935280.mp4
the above example is using git = "https://github.com/RustAudio/rodio", rev = "a359d2a"
the is the working Example using the Crates.io Version
20260717-1552-33.1482909.mp4
Also I noticed in the Crates Version I can do
but if i try this in the main branch it panics saying unsupported device even though it worked before....
Please let me know if you have any questions.