“Как играть в Audio в Python с помощью Pygame” Ответ

Как играть музыку на pygame

import pygame

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

Как играть в Audio в Python с помощью 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

Ответы похожие на “Как играть в Audio в Python с помощью Pygame”

Вопросы похожие на “Как играть в Audio в Python с помощью Pygame”

Больше похожих ответов на “Как играть в Audio в Python с помощью Pygame” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования