[iOS]AVSpeechSynthesizer语音合成_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > [iOS]AVSpeechSynthesizer语音合成

[iOS]AVSpeechSynthesizer语音合成

 2017/6/20 5:44:42  EverNight  程序员俱乐部  我要评论(0)
  • 摘要:1#import<AVFoundation/AVFoundation.h>23//初始化方法4AVSpeechSynthesizer*speech=[[AVSpeechSynthesizeralloc]init];56//设置内容7AVSpeechUtterance*utterance=[AVSpeechUtterancespeechUtteranceWithString:8@"红鲤鱼与绿鲤鱼与驴"];9//设置语音类型10utterance
  • 标签:iOS
 1 #import <AVFoundation/AVFoundation.h>
 2 
 3 // 初始化方法
 4 AVSpeechSynthesizer *speech = [[AVSpeechSynthesizer alloc]init];
 5 
 6 // 设置内容
 7 AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:
 8                                 @"红鲤鱼与绿鲤鱼与驴"];
 9 // 设置语音类型
10 utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"zh-CN"];
11 
12 // 语速
13 utterance.rate = 0.5;
14 
15 // 开始朗读
16 [speech speakUtterance:utterance];

 

发表评论
用户名: 匿名