RustAudio / rodio

Rust audio playback library
Apache License 2.0
1.75k stars 228 forks source link

ALAC/AIFF support #193

Closed mainrs closed 2 months ago

mainrs commented 5 years ago

Taken from the readme, rodio doesn't support ALAC file playback (the compressed lossless file format used by Apple). Would be nice to have this too! Not sure if there are any crates that decode the data though.

Since this is kind of related to the prior question about file support, is AIFF supported as well?

Thanks!

gui1117 commented 5 years ago

about ALAC a cargo crate exist: https://crates.io/crates/alac and also maybe https://crates.io/crates/caf

jsomedon commented 4 years ago

about ALAC a cargo crate exist: https://crates.io/crates/alac

If I want to use that crate, should I try to implement Source trait using that crate?

wxllow commented 10 months ago

Symphonia has an ALAC decoder, is there any chance of ALAC support being added to Rodio using this?