[Solved] How to detect audio transients in iOS
There are a couple of simple basic ideas you can put to work here. First, take the input audio and divide into small sized buckets (on the order of 10’s on milliseconds). For each bucket compute the power of the samples in it by summing the squares of each sample value. For example say you … Read more