我有一个延迟的声音文件与pygame一起播放。
menu_sound = pygame.mixer.Sound('sounds/Devastation.ogg')
#these lines are not next to each other in my code, i just picked out relevant lines.
menu_sound.play(-1)
大约有4秒的延迟。我怎么能强迫pygame在4秒开始播放音乐?我查看了混音器模块文档,找不到任何内容。
Python 3.3.3,windows