📜  pyttsx3 设置音量 - Python 代码示例

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

代码示例2
import pyttsx3

engine = pyttsx3.init()

new_vol = .5 #volume between 0 and 1
engine.setProperty("volume", new_vol)