Audio Processing In Rust

[Michael] volunteers with emergency services, and sometimes has to monitor radio traffic. Sometimes there’s a lot to review, and to make it easier he wrote a noise gate — think of it as a squelch — to break apart recorded audio into parts. Rust has been gaining popularity for writing low level software, and that’s the language he uses. However, you’ll see even if you don’t know Rust, it is pretty easy to figure out.

For test data, [Michael] took some publicly-available recordings of air traffic control. Using some ready-made audio processing functions and a simple state machine makes the code easy to write.

The code allows you to set a threshold the signal has to exceed to start a new grouping. It also lets you set a decay time. If the signal goes below the threshold for that amount of time, it will cause the gate to close and close the current recording.

Typical noise gates also have an attack time to reject larger spikes from getting through the gate, however, this code appears to react immediately to a signal above the threshold.

The main function reads the input file and applies the algorithm. When the state machine triggers, it copies audio data to the sink which writes it out. It is that simple.

We see Rust more and more in small systems. If you want to read more about that trend, we’ve talked about it at length.

4 thoughts on “Audio Processing In Rust

    1. If C is “perfectly fine” then how do you explain the thousands and thousands of CVE entries caused by poor buffer handling in C? All of these could have been avoided with a better language.

Leave a Reply to RetiredHobgoblinCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.