文本转语音
分享一条在Mac上将一个文本转换为音频文件的终端命令,个人认为还是蛮实用的。
指令:
cat sample.txt | say -o sample.aiff
分享一条在Mac上将一个文本转换为音频文件的终端命令,个人认为还是蛮实用的。
cat sample.txt | say -o sample.aiff
You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run jekyll serve, which launches a web server and auto-r...…
前言 在上篇文章中介绍了ReactiveCocoa的基础知识,接下来我们来深入介绍ReactiveCocoa及其在MVVM中的用法。常见操作方法介绍操作须知所有的信号(RACSignal)都可以进行操作处理,因为所有操作方法都定义在RACStream.h中,因此只要继承RACStream就有了操作处理方法。操作思想运用的是Hook(钩子)思想,Hook是一种用于改变API(应用程序编程接口:方法)执行结果的技术.Hook用处:截获API调用的技术。操作方法bind(绑定)- Reacti...…