“Zainstaluj terminal dźwiękowy Python” Kod odpowiedzi

Play Sound in 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

Zainstaluj terminal dźwiękowy Python

$ pip install playsound
Wesam H

Odpowiedzi podobne do “Zainstaluj terminal dźwiękowy Python”

Pytania podobne do “Zainstaluj terminal dźwiękowy Python”

Więcej pokrewnych odpowiedzi na “Zainstaluj terminal dźwiękowy Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu