Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python play sound

# pip3 install playsound
from playsound import playsound as play
play('sound.mp3')
Comment

python 3 play sound

#!/usr/bin/env python3
# Import playsound module
from playsound import playsound
 
# Input an existing wav filename
wavFile = input("Enter a wav filename: ")
# Play the wav file
playsound(wavFile)
 
# Input an existing mp3 filename
mp3File = input("Enter a mp3 filename: ")
# Play the mp3 file
playsound(mp3File)
Comment

play sound on python

import  vlc
import time

p = vlc.MediaPlayer("fade music.mp3")
p.play()
time.sleep(60)
p.stop()
Comment

ipython play audio

import IPython
IPython.display.Audio("my_audio_file.mp3")
Comment

play sound python

winsound.PlaySound(r'C:sound.wav', winsound.SND_ASYNC)
Comment

python play sound

from playsound import playsound as play
play('audio.mp3')
Comment

ipython play audio

import IPython
IPython.display.Audio("my_audio_file.mp3")
Comment

ipython play audio

import IPython
IPython.display.Audio("my_audio_file.mp3")
Comment

ipython play audio

import IPython
IPython.display.Audio("my_audio_file.mp3")
Comment

PREVIOUS NEXT
Code Example
Python :: load saved model tensorflow 
Python :: python get current month 
Python :: colab add package 
Python :: selectfield flask wtf 
Python :: datetimes to day of year python 
Python :: How to Create Caesar Cipher Using Python 
Python :: generate gif py 
Python :: create a df in pandas 
Python :: install python packages from inside within python program 
Python :: merge two dataframes with common columns 
Python :: how to add subplots for histogram 
Python :: python read html table 
Python :: pil image to numpy array 
Python :: fyit download 
Python :: export csv 
Python :: look through dict 
Python :: python remove articles from string regex 
Python :: rename column pandas 
Python :: pandas dataframe scan column for values between numbers 
Python :: python filter list of strings 
Python :: declare numpy zeros matrix python 
Python :: how to make html files open in chrome using python 
Python :: python create environment linux 
Python :: python average 
Python :: python list comprehension with if 
Python :: show multiple matplotlib images 
Python :: spacy ner 
Python :: python regex search group 
Python :: small factorial codechef solution 
Python :: changing axis labels matplotlib 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =