我現在已經開始工作了,但延遲時間還有更好的辦法,因爲我想要兩個不同的腳本來工作我希望按照這個順序播放這些文件,並讓我的圖像按順序排列,圖像是長腳本,並且對它們也有時間延遲。在Pygame中,如果甚至可以播放多首歌曲,它又如何呢?
#!/usr/bin/env python
import pygame
pygame.mixer.init()
pygame.mixer.pre_init(44100, -16, 2, 2048)
pygame.init()
print "hey I finaly got this working!"
sounda= pygame.mixer.Sound('D:/Users/John/Music/Music/FUN.OGG')
soundb= pygame.mixer.Sound('D:/Users/John/Music/Music/Still Alive.OGG')
soundc= pygame.mixer.Sound('D:/Users/John/Music/Music/turret.OGG')
soundd= pygame.mixer.Sound('D:/Users/John/Music/Music/portalend.OGG')
sounda.play()
pygame.time.delay(11000)
soundb.play()<P>
pygame.time.delay(180000)
soundc.play()
pygame.time.delay(90000)
soundd.play()
是的,但它是如何使用渠道我嘗試過,但如何分配一個頻道的歌曲? – user754010 2011-05-14 22:40:53
@user:編輯我的答案 – 2011-05-15 07:23:48