“Instalar Play Sound Python Terminal” Código de respuesta

Reproducir el sonido en Python

import winsound

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

Python 3 reproducir sonido

#!/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

Instalar Play Sound Python Terminal

$ pip install playsound
Wesam H

Respuestas similares a “Instalar Play Sound Python Terminal”

Preguntas similares a “Instalar Play Sound Python Terminal”

Más respuestas relacionadas con “Instalar Play Sound Python Terminal” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código