文字语音播放之AVSpeechSynthesizer简单使用

引入

#import 

使用及介绍

AVSpeechSynthesizer调用speakUtterance方法来将文本转化为语音,而speakUtterance方法需要一个参数,这个参数是AVSpeechUtterance实例的,它将包含所要读的文本,并且可以设置朗读的速度,强度和音量等。

// 最主要的几行代码如下:
AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init]
AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc]initWithString:text];        
[synthesizer speakUtterance:utterance];
// 这样就可以将text转化为语音了,设置速度,强度和音量用如下参数:
utterance.rate = 0.5;                     //最小为0.0,最大为1.0
utterance.pitchMultiplier = 1;       //0.5-2.0之间
utterance.volume = 0.75;             //0.0-1.0之间
// 暂停和继续阅读
[synthesizer pauseSpeakingAtBoundary:AVSpeechBoundaryImmediate];   //这里可以设置是立即停止阅读还是读完这个词再暂停
[synthesizer continueSpeaking];
// 逐句阅读:将切分好的句子一个一个放到AVSpeechUtterance中进行朗读,就像队列一样
// 按句切分
textSplitArr = [text componentsSeparatedByString:@"。"];
totalUtterances = [textSplitArr count];
currentUtterance = 0;
totalTextLength = 0;
spokenTextLengths = 0;

for (i = 0;i < [textSplitArr count];i++) {
    AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc]initWithString:textSplitArr[i]];
    utterance.rate = 0.5;
    utterance.pitchMultiplier = 1;
    utterance.volume = 0.75;
    [synthesizer speakUtterance:utterance];
}
// 高亮文本:这个要用到AVSpeechSynthesizer代理里的方法,主要是获取正在阅读的那句utterance的range,从而将那句话进行不同颜色和字体的属性添加。
(void)speechSynthesizer:(AVSpeechSynthesizer )synthesizer willSpeakRangeOfSpeechString: (NSRange)characterRange utterance:(AVSpeechUtterance )utterance { 
  NSString testStr = utterance.speechString; //这里是将整篇文本都设为黑色
  NSMutableAttributedString textAttribute = [[NSMutableAttributedString alloc] initWithString:text]; 
  [textAttribute addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:NSMakeRange(0, text.length-1)]; 
  [textAttribute addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:15.0] range:NSMakeRange(0,text.length-1)]; 
  //找到正在读的那句话的range并且设置,这里range是通过didFinishSpeechUtterance这个方法来找的 
  [textAttribute addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(spokenTextLengths, testStr.length+1)]; 
  [textAttribute addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:15.0] range:NSMakeRange(spokenTextLengths,testStr.length+1)];
  list text hereself.textView.attributedText = textAttribute;
}

DEMO

    AVSpeechSynthesizer *av = [[AVSpeechSynthesizer alloc]init];
    AVSpeechUtterance *aaa = [[AVSpeechUtterance alloc]init];

    NSString * astring = @"hello world, 北京市公安局公安交通管理局网站通告,调整2021年“清明节”期间北京市机动车和非本市进京载客汽车交通管理措施。通告称,根据国务院办公厅《关于2021年部分节假日安排的通知》,以及北京市人民政府《关于实施工作日高峰时段区域限行交通管理措施的通告》相关规定,决定于2021年4月3日、4日、5日,对本市机动车和非本市进京载客汽车交通管理措施做出调整:一、本市机动车不受工作日高峰时段区域限行交通管理措施限制。二、非本市进京载客汽车不受7时至9时、17时至20时禁止在五环路(含)以内道路行驶,以及9时至17时按车牌尾号区域限行交通管理措施限制。来源:北京日报客户端";

    aaa = [AVSpeechUtterance speechUtteranceWithString:astring];
    aaa.voice = [AVSpeechSynthesisVoice voiceWithLanguage: @"zh-cn"];  //语言
    aaa.rate = 0.5;                     //语速 最小为0.0,最大为1.0
    aaa.pitchMultiplier = 1;       //0.5-2.0之间
    aaa.volume = 1;             //0.0-1.0之间
    [av speakUtterance:aaa];

你可能感兴趣的:(文字语音播放之AVSpeechSynthesizer简单使用)