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

1

1

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?

Hypochlorite answered 22/9, 2015 at 10:17 Comment(0)
G
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.

Gunboat answered 9/10, 2015 at 6:23 Comment(2)
The thing is that I need to apply filter to file without playing it.Hypochlorite
@YakivKovalsky That problem is solved in iOS 11, I'm told.Chilblain

© 2022 - 2024 — McMap. All rights reserved.