How to make a simple EQ AudioUnit (bass, mid, treble) with iOS?

后端 未结 5 572
慢半拍i
慢半拍i 2020-12-13 07:34

does anyone know how to make a simple EQ audio unit (3 bands - low, mid, hi) with iOS ? I know how to add an iPod EQ Audio Unit to my AU Graph. But it only give you access t

5条回答
  •  攒了一身酷
    2020-12-13 08:15

    The iPhone doesn't exactly support custom AudioUnits. Or, more precisely, it doesn't allow you to register an AudioUnit's identifier so you could load it in an AUGraph. You can, however, register a render callback, get raw PCM data, and process it accordingly. This is how I've implemented effect processing in the iPhone.

提交回复
热议问题