“Comment jouer audio en python en utilisant pygame” Réponses codées

Comment jouer de la musique sur Pygame

import pygame

pygame.init()
mixer.music.load("music/main.wav")#music file 
mixer.music.play(-1)
Yankarlo Granados

Comment jouer audio en python en utilisant pygame

from pygame import mixer
  
# Starting the mixer
mixer.init()
  
# Loading the song
mixer.music.load("song.mp3")
  
# Setting the volume
mixer.music.set_volume(0.7)
  
# Start playing the song
mixer.music.play()
  
# infinite loop
while True:
      
    print("Press 'p' to pause, 'r' to resume")
    print("Press 'e' to exit the program")
    query = input("  ")
      
    if query == 'p':
  
        # Pausing the music
        mixer.music.pause()     
    elif query == 'r':
  
        # Resuming the music
        mixer.music.unpause()
    elif query == 'e':
  
        # Stop the mixer
        mixer.music.stop()
        break
Heet Patel

Réponses similaires à “Comment jouer audio en python en utilisant pygame”

Questions similaires à “Comment jouer audio en python en utilisant pygame”

Plus de réponses similaires à “Comment jouer audio en python en utilisant pygame” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code