The Qt TextToSpeech module enables a Qt application to read out text by using speech synthesis. This is especially useful in scenarios where the end-user cannot access the application's visual interface, for example, when driving or operating machinery. In such setups, the module can be used to read out incoming notifications or to provide turn-by-turn navigation instructions.
The module does not provide a text-to-speech engine itself. Instead, it uses engines native to the operating system. See Qt TextToSpeech Engines for more details about this.
模块的 QML 类型是可用的透过
QtTextToSpeech
导入。要使用类型,添加以下 import 语句到 .qml 文件:
import QtTextToSpeech
使用 Qt 模块的 C++ API 要求直接 (或透过其它依赖) 链接到模块库。几个构建工具对此有专用支持,包括 CMake and qmake .
使用
find_package()
命令定位所需模块组件在
Qt6
包:
find_package(Qt6 REQUIRED COMPONENTS TextToSpeech)
target_link_libraries(mytarget PRIVATE Qt6::TextToSpeech)
更多细节,见 构建采用 CMake 概述。
要配置采用 qmake 构建模块,添加模块作为值为
QT
变量在工程的 .pro 文件:
QT += texttospeech
The following lists some important QML types.
TextToSpeech | Type provides access to text-to-speech engines |
voice | Type represents a particular voice |
The following lists some important C++ Classes.
QTextToSpeech | 方便地访问 TTS (文本转语音) 引擎 |
QVoice | Represents a particular voice |