I'm just starting out playing with audio using example programs to make sounds.
When I run this script using Python3 on my Pi 4B:
import pygame.mixer
pygame.mixer.init(48000,-16,1,1024)
audio1 = pygame.mixer.Sound("buzzer.wav")
I get a "no such file exists error"
I can't open any .wav file.
Please help. Thanks