How can speech be converted to text?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ismat
el 2 de Jun. de 2023
Comentada: Govind KM
el 2 de Jun. de 2023
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 comentarios
Respuesta aceptada
Govind KM
el 2 de Jun. de 2023
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 comentarios
Govind KM
el 2 de Jun. de 2023
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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Simulation, Tuning, and Visualization en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!