Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Play Mp3 Files With Python Using the pygame Package

# If you don’t have pygame package installed on your system,
# you can install it with the command.

"""
$ pip install pygame
"""

import pygame

pygame.mixer.init()
pygame.mixer.music.load('sample.mp3')
pygame.mixer.music.play()
Comment

how to play mp3 file form pygame module

from pygame import mixer
    water_song = "water.ogg"
    mixer.init()
    mixer.music.load(water_song)
    mixer.music.play()
Comment

PREVIOUS NEXT
Code Example
Python :: generate-thumbnails-in-django-with-pil 
Python :: creating a new DataFrame from itertuples, namedtuple using a series or list() 
Python :: function continuity python 
Python :: grepper how to use fraction 
Python :: pytorch starting 
Python :: change text color in jupyter notebook 
Python :: arm str example 
Python :: pasar tupla a funcion python 
Python :: Print in python capital p 
Python :: caqch làm app chatbot python 
Python :: missing number 
Python :: write a variable and assin a string to it 
Python :: find no of iterations in python 
Python :: python tupel from string 
Python :: How to change the height of an input in python tkinter 
Python :: how to make an app like word in python 
Python :: what is type 
Python :: what is python virtual environment 
Python :: brython implemantation 
Python :: python redirect console output to devnull 
Python :: download python for windows 7 32 bits 
Python :: how to print a character n times in python 
Python :: np.all() 
Python :: python set console title 
Python :: if else condition python 
Python :: time library python 
Python :: how to get percentage in python 
Python :: python create empty dictionary with keys 
Python :: python libraries 
Python :: numpy and operator 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =