“Installer Play Sound Python Terminal” Réponses codées

Jouez au son dans Python

import winsound

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

python 3 jouer le son

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

Installer Play Sound Python Terminal

$ pip install playsound
Wesam H

Réponses similaires à “Installer Play Sound Python Terminal”

Questions similaires à “Installer Play Sound Python Terminal”

Plus de réponses similaires à “Installer Play Sound Python Terminal” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code