通过 C++/Java 进行音频编辑
我(从头开始)编写了文本转语音引擎,它工作得很好。但声音需要更平滑一些。我可以在音频编辑程序(编辑输出文件)中实现它。但是如何通过C++/Java进行复杂的编辑呢?其他文本转语音引擎是如何做到这一点的?
I wrote text-to-speech engine (from scratch) and it works pretty fine. But sound needs to be a little bit smoother. I can achieve it in audio editing programs (editing output file). But how can I do complex editing through C++/Java? How other text-to-speech engines do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文本到语音引擎正在对输出音频应用复杂的过滤器。这些过滤器取决于语言。
我建议你找一本关于音频处理的好书。由于这个主题非常复杂,一本好书可能会阐明这个问题。
Text to speech engines are applying complex filters on the output audio. These filters depend on the language.
I recommend you to find a good book on audio processing. Since the topic is very complex, a good book might shed some light on the problem.