“Installieren Sie Play Sound Python Terminal” Code-Antworten

Spielen Sie Sound in Python

import winsound

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

Python 3 spielen 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

Installieren Sie Play Sound Python Terminal

$ pip install playsound
Wesam H

Ähnliche Antworten wie “Installieren Sie Play Sound Python Terminal”

Fragen ähnlich wie “Installieren Sie Play Sound Python Terminal”

Weitere verwandte Antworten zu “Installieren Sie Play Sound Python Terminal” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen