How to apply filters to previously recorded sound

2019-05-31 16:54发布

There is a previously recorded sound file containing user's voice. What I need to do is apply some sound filter to change the voice and after that be able to save and play modified version.

AudioKit can open file using [[AKFileInput alloc] initWithFilename:file1]; and save with [[AKManager sharedManager] renderToFile:outputFile forDuration:duration];

Any ideas how to apply some effects between these 2 commands?

1条回答
我想做一个坏孩纸
2楼-- · 2019-05-31 17:24

In addition to opening the file with AKFileInput, you have to play it back, and to do so, you'll be creating an AKInstrument. In that AKInstrument you can process the output with any of AudioKit's signal modifier operations.

查看更多
登录 后发表回答