我正在创建一个同时播放多个音符的应用程序。 我尝试过多线程和许多其他库,但他们都只是在另一个之后播放声音。 这就是我目前所拥有的:
import threading
import winsound
def playsound(notes, length):
for note in notes:
t = threading.Thread(target=winsound.Beep, args=(note,length))
t.start()
playsound([100,200,300],200)