如何在iPhone中制作RTA分析仪
我想做一个音频 RTA。我将通过aurioTouch示例代码进行尝试,但我无法制作实际的RTA,我想在Octave和1/3 Octave的基础上制作RTA。
请建议我正确的方法。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想做一个音频 RTA。我将通过aurioTouch示例代码进行尝试,但我无法制作实际的RTA,我想在Octave和1/3 Octave的基础上制作RTA。
请建议我正确的方法。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可能想要尝试的是具有所需频率响应(倍频程或第三倍频程带宽、过渡宽度、阻带衰减等)的带通滤波器阵列,您可以使用标准 DSP IIR(或者可能是 FFT 重叠相加/保存)过滤算法和技术。 aurioTouch 示例已经向您展示了如何获取音频样本来提供您选择的过滤过程。然后在所需的时间步长绘制每个滤波器(例如:来自包络跟随器)的计算幅度响应。
在线有大量数字信号处理教程和资源:Bores、维基教科书,DSPGuru、DSPGuide 等。
What you might want to try is an array of bandpass filters with your desired frequency response (octave or 3rd octave bandwidth, transition width, stopband attenuation, etc.), which you can implement using standard DSP IIR (or perhaps FFT overlap-add/save) filtering algorithms and techniques. The aurioTouch example already shows you how to get the audio samples to feed your chosen filtering process. Then plot the calculated magnitude response out of each filter (for example: from an envelope follower) at your desired time step.
There are plenty of Digital Signal Processing tutorials and resources on-line: Bores, Wikibooks, DSPGuru, DSPGuide, etc.