📜  python 3 播放声音 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:58.142000             🧑  作者: Mango

代码示例1
#!/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)