What is the best audio processing library out there for Rust?

Hi, I am looking for a good audio library that allows me to import an audio file, and extract frequencies from it as well as to play the audio file. Does anyone know a good audio library for this?

You asked a similar question a few months ago. An audio playback library has little reason to extract frequencies, so I'd be very surprised if you found a library that did both of those. If you want to detect frequencies in sound data, you should look into fourier decomposition, and look for crates related to that. You can easily find an audio playback library by searching as well.

1 Like

Oh, thanks man

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.