How can speech be converted to text?
2 次查看(过去 30 天)
显示 更早的评论
Here is the flowchart of my system: User speaks >> Speech to Text conversion >> Text is sent to chatGPT >> Process ends.
My question is regarding the "Speech to Text" block: Is the "Audio Toolbox" sufficient for this task, or is an external API like the Google Speech API also required?
Furthermore, does the "Audio Toolbox" support multiple languages, or is it limited to English only?
0 个评论
采纳的回答
Govind KM
2023-6-2
Hi Ismat,
As per documentation, Audio Toolbox enables you to interface with third-party speech-to-text APIs from MATLAB, requiring extended Audio Toolbox functionality available from File Exchange, and one of the following APIs : Google Speech, IBM Watson Speech, Microsoft Azure Speech, or Amazon Transcribe (Amazon Transcribe requires R2022b or later).
Starting in MATLAB R2022b, you can use convert speech to text using a pretrained wav2vec 2.0 model that does not require access to an external API, and without needing to download extended Audio Toolbox functionality from File Exchange. Using the wav2vec2.0 model will require the Deep Learning Toolbox. You can also perform speech transcription interactively using the Signal Labeler app.
You can refer to these documentation links for further information on using these tools:
2 个评论
Govind KM
2023-6-2
If you purchase a license for the Audio Toolbox, you can use the speech2text function. However, the function requires a client object as an input argument, which is an interface to either the wav2vec2.0 model or any of the four external APIs mentioned above.
Hence, you will need either the wav2vec2.0 model or one of the four mentioned external APIs to use the speech2text function effectively.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulation, Tuning, and Visualization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!