“Pygame Play Sound” Kode Jawaban

Pygame Play Sound

import pygame

pygame.mixer.init()
crash_sound = pygame.mixer.Sound("crash.wav")
crash_sound.play()
AlarmClockMan

cara menempatkan lagu di pygame

#has to be in .mp3 format
#has to be in same folder
#load the music
pygame.mixer.music.load('song.mp3')
#play the music infinite
pygame.mixer.music.play(-1)
#or play it one time
pygame.mixer.music.play(0)
Annoying Angelfish

Jawaban yang mirip dengan “Pygame Play Sound”

Pertanyaan yang mirip dengan “Pygame Play Sound”

Lebih banyak jawaban terkait untuk “Pygame Play Sound” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya