我正在尝试创建一个 TTS 以在 Objc 中归档。由于iOS13可以将其写入文件。但我坚持使用 writeUtterance:toBufferCallback。
有人在objc中有这个函数的例子吗?
[synth speakUtterance:utterance];
我正在尝试创建一个 TTS 以在 Objc 中归档。由于iOS13可以将其写入文件。但我坚持使用 writeUtterance:toBufferCallback。
有人在objc中有这个函数的例子吗?
[synth speakUtterance:utterance];
参考 Swift 中的潜在答案,这将是 Objective-C 实现
AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc] init];
AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc] initWithString:@"test 123"];
AVSpeechSynthesisVoice *voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-US"];
[utterance setVoice:voice];
__block AVAudioFile *output = nil;
[synthesizer writeUtterance:utterance
toBufferCallback:^(AVAudioBuffer * _Nonnull buffer) {
AVAudioPCMBuffer *pcmBuffer = (AVAudioPCMBuffer*)buffer;
if (!pcmBuffer) {
NSLog(@"Error");
return;
}
if (pcmBuffer.frameLength != 0) {
//append buffer to file
if (output == nil) {
output = [[AVAudioFile alloc] initForWriting:[NSURL fileURLWithPath:@"test.caf"]
settings:pcmBuffer.format.settings
commonFormat:AVAudioPCMFormatInt16
interleaved:NO error:nil];
}
[output writeFromBuffer:pcmBuffer error:nil];
}
}];