Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to play mp3 files using vlc python library

import vlc
p = vlc.MediaPlayer("sample.mp3")
p.play()
Comment

Play Mp3 Files With Python Using the vlc Package

import vlc

p = vlc.MediaPlayer("sample.mp3")
p.play()

# This code snippet plays the sample.mp3 file in the current
# working directory.

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

"""
$ pip install python-vlc
"""
Comment

PREVIOUS NEXT
Code Example
Python :: python send image server 
Python :: for i 
Python :: % operatior in python print 
Python :: how to find if the numpy array contains negative values 
Python :: mailchimp send email python 
Python :: pyqt5 keypressevent 
Python :: remove item from list python 
Python :: python return specific elements from list 
Python :: count elements in list 
Python :: arrange array in ascending order python 
Python :: remove element from list 
Python :: python read integer from stdin 
Python :: np.percentile 
Python :: what does .shape do in python 
Python :: root mean square python signal 
Python :: flask subdomains 
Python :: selenium get cookies python 
Python :: how to load mnist dataset in python 
Python :: python rdp server 
Python :: pandas df filter by time hour 
Python :: python dataframe replace nan with 0 
Python :: pandas dataframe add column from another column 
Python :: change default port django 
Python :: python lambda 
Python :: django sessions 
Python :: convert rgb to a single value 
Python :: python dict for k v 
Python :: Python how to compile to exe file 
Python :: how to have requirement file in python for libs 
Python :: create an empty list of lists in python 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =