我有两个相同长度的声音文件,我想按顺序播放。具体来说,我希望第一个文件播放三遍,第二个文件播放一次。
我可以通过 aSfPlayer
和 a来实现这一点TrigFunc
,但我的印象是每次切换声音时这都会从磁盘读取声音文件。有没有办法我可以通过将声音保存在 RAM 中的SndTable
来实现这一点?
这是使用SfPlayer
and的解决方案TrigFunc
,使用此示例作为灵感。
from pyo import *
s = Server().boot()
DOWNLOADS = 'C:\\Users\\mmoisen\\Downloads\\'
first = DOWNLOADS + 'first.wav'
second = DOWNLOADS + 'second.wav'
sf = SfPlayer(first, speed=100/135.0, loop=True, mul=0.5).out()
count = 0
def foo():
global count
count += 1
print count
if count == 3:
sf.path = second
if count == 4:
sf.path = forst
count = 0
trig = TrigFunc(sf['trig'][0], foo)
s.start()