I am developing the Sound Effects application on OSX using Swift, and I'm interested in integrating the tone shift effect.
I would like to change the tone up or down by an octave in real time. Currently, I only receive a dry signal.
I am not sure if this is possible at all, and would like to know if it is possible or any help or suggestions that anyone might have.
The current code related to the problem is as follows:
import Cocoa import AVFoundation class ViewController: NSViewController { var engine = AVAudioEngine() var timePitch = AVAudioUnitTimePitch() override func viewDidLoad() { timePitch.pitch = 1200
swift avfoundation pitch pitch-shifting
Duke diamond
source share