Comment jouer de la musique sans pygame
from playsound import playsound
playsound('audio.mp3')
#Hope it helps :)
Small pp person
from playsound import playsound
playsound('audio.mp3')
#Hope it helps :)
import pygame
pygame.init()
mixer.music.load("music/main.wav")#music file
mixer.music.play(-1)
import pygame
pygame.init()
pygame.mixer.play('datei.wav')
#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)
pygame.mixer.music.load('jazz.wav')
pygame.mixer.music.play(-1)