Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to play music on pygame

import pygame

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

how to put song in 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)
Comment

PREVIOUS NEXT
Code Example
Python :: file manage py line 17 from exc django 
Python :: pandas return row 
Python :: python Modulo 10^9+7 (1000000007) 
Python :: python read values from file 
Python :: pie plot in python 
Python :: reorder columns pandas 
Python :: how to make gtts text to speech converter 
Python :: get last n in list python 
Python :: add cooldown to command discord.py 
Python :: discord.py find voice channel by name 
Python :: python string reverse 
Python :: boto3.resource python 
Python :: python loop through dictionary 
Python :: python return using if 
Python :: selenium element_to_be_clickable PYTHON 
Python :: udp server python 
Python :: pandas isin 
Python :: continue vs pass python 
Python :: python compare sets 
Python :: pandas replace last cell 
Python :: adding text cv2 
Python :: how to check for a substring in python 
Python :: Python Tkinter Button Widget Syntax 
Python :: python async function 
Python :: circumference of a circle python 
Python :: how to convert binary to integer in python 
Python :: how to terminate subprocess.call in python 
Python :: python list pop multiple 
Python :: python regex get word after string 
Python :: superscript python 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =