我有这段代码可以阅读我的文字:
itertools.cycle
但是在我的文字中,我想在几句话之后停顿很长时间。怎么做?也许有一些符号可以做到这一点(这个from itertools import cycle
a = [10, 20, 30, 40, 50]
b = [1, 2, 3]
print([x * y for x, y in zip(a, cycle(b))])
# [10, 40, 90, 40, 100]
不长)?
答案 0 :(得分:0)
基于https://developer.apple.com/documentation/avfoundation/avspeechutterance#1668645
上的文档您希望将您的语音分为多个排队的语音,并使用postUtteranceDelay
:
var postUtteranceDelay: TimeInterval
语音合成器在说完话语之后等待下一个排队的话语之前等待的时间。