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

Go Web编程

Go Web编程

谢孟军 / 电子工业出版社 / 2013-6-1 / 65.00元

《Go Web编程》介绍如何用Go语言进行Web应用的开发,将Go语言的特性与Web开发实战组合到一起,帮读者成功地构建跨平台的应用程序,节省Go语言开发Web的宝贵时间。有了这些针对真实问题的解决方案放在手边,大多数编程难题都会迎刃而解。 在《Go Web编程》中,读者可以更加方便地找到各种编程问题的解决方案,内容涵盖文本处理、表单处理、Session管理、数据库交互、加/解密、国际化和标......一起来看看 《Go Web编程》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

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

HSV CMYK互换工具