iOS 语音合成器 MVSpeechSynthesizer

码农软件 · 软件分类 · 音频声效(Audio) · 2019-07-08 17:29:37

软件介绍

AVSpeechSynthesizer 的功能:

  1. Simple way to integrate the AVSpeechsynthesizer into your app.

  2. Instead of delgate method it provides block methods.

  3. Apart from simple usage it can auto detect the language of given string and read.

  4. It can higlight currently reading word.

  5. It also throw currently reading word with their langauge.

  6. It can auto scroll the page if once reached bottom of the text box.

  7. It can read all languages which is supported by AVSpeechSynthesizer

  8. It can list all supported langauages and their country name

Synth

示例代码:

MVSpeechSynthesizer *mvSpeech=[MVSpeechSynthesizer sharedSyntheSize];//Initialize the class
mvSpeech.higlightColor=[UIColor yellowColor];//Higlght backgroundcolor
mvSpeech.isTextHiglight=YES;//If you want to highlight set yes, othgerwise set no.
mvSpeech.speechString=//Pass string which is need to read.
mvSpeech.inputView=_helpTextView;//Pass the input view which carries the string.
[mvSpeech startRead];//Initialize the read function.
mvSpeech.speechFinishBlock=^(AVSpeechSynthesizer *synthesizer, AVSpeechUtterance *utterence){
 //It will call when read action finished.
};

本文地址:https://codercto.com/soft/d/9698.html

Discrete Mathematics and Its Applications

Discrete Mathematics and Its Applications

Kenneth H Rosen / McGraw-Hill Science/Engineering/Math / 2003-04-22 / USD 132.81

Discrete Mathematics and its Applications is a focused introduction to the primary themes in a discrete mathematics course, as introduced through extensive applications, expansive discussion, and deta......一起来看看 《Discrete Mathematics and Its Applications》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具