Qt使用QTextToSpeech进行语音播报

QTextToSpeech是从Qt5.8推出的用于方便将文本转换成语音的类,使用say()开始合成文本。通过setLocale()指定语言

 

 

使用方式:

增加:QT += texttospeech

头文件:#include

QTextToSpeech  *tts;

tts = new QTextToSpeech(this);
tts->setLocale(QLocale::Chinese);//设置语言环境

tts->setRate(0.0);//设置语速-1.0到1.0

tts->setPitch(1.0);//设置音高-1.0到1.0

tts->setVolume(1.0);//设置音量0.0-1.0

openVoice("123456789");

 

 

void Widget::openVoice(QString text)
{
     if(tts->state()==QTextToSpeech::Ready)
     {
         tts->say(text);//开始合成文本
     }
}

 

 

你可能感兴趣的:(Qt)