给 tts 添加延迟
我的程序的一部分在服务中使用 TTS 引擎,但我想在应该完成的时候添加 3 秒的延迟,以便它不会与将要播放的其他音频重叠。我怎样才能把这3秒的延迟放进去?
I have a part of my program that uses the TTS engine in a service but I want to add a 3 second delay from when it should be done so that it does not overlap with other audio that would be playing. how can I put that 3 second delay in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用线程概念。创建一个新线程并将使用 TTS 引擎的代码部分放置在服务中并给予延迟。
use the thread concept. Make a new thread and place the part of code which uses TTS engine in a service and give delay.