使用 Google TTS 在 iPhone 应用程序中开发,我已经发送了一些请求,然后我使用 AVAudioPlayer 获取要播放的音频数据。
我已发送更多单词的请求,然后数据为空。谷歌 TTS 只支持小词转换音频数据或更多,我想知道,请帮助我。
提前致谢
我试过这个:
NSString *linkTTS = [NSString stringWithFormat:@"http://translate.google.com/translate_tts?tl=en&q=I+am+new+to+IPhone+development+I+am+working+on+Audio+player+i+have+to+show+the+current+time+and+estimated+time"];
NSData *dataTTS = [NSData dataWithContentsOfURL:[NSURL URLWithString:linkTTS]];
NSLog(@"dataTTS:%@",dataTTS);
_googlePlayer = [[AVAudioPlayer alloc] initWithData:dataTTS error:nil];
[_googlePlayer play];