How to apply filters to previously recorded sound and save modified version using AudioKit?

心已入冬 提交于 2019-12-08 04:26:20

问题


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:


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.



来源:https://stackoverflow.com/questions/32714320/how-to-apply-filters-to-previously-recorded-sound-and-save-modified-version-usin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!