“Ipython Play Sound” Respostas de código

Jogar som em python

import winsound

winsound.PlaySound('sound.wav', winsound.SND_FILENAME)
Amused Ape

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)
Creepy Camel

Ipython Play Sound

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

Respostas semelhantes a “Ipython Play Sound”

Perguntas semelhantes a “Ipython Play Sound”

Mais respostas relacionadas para “Ipython Play Sound” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código