playwave.py 130 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import pygame import time pygame.mixer.init() test = pygame.mixer.Sound("test1.wav") while True: test.play() time.sleep(2.0)