speech to text and text to speech conversion (STS)

Hi
I am working on conversion of Speech to TExt and then Text to Speech.. I want guidance in it on how to proceed through it in matlab ..

10 comentarios

Yash
Yash el 30 de Jun. de 2012
there is also a free matlab program availble for this, i had built a GUI, on it u just need to make few changes in it then your program will work, i guess u search the file exchange or email me will send you
aditi singh
aditi singh el 31 de Oct. de 2017
plz give m the matlab code on my email id- aditisingh847@yahoo.in i will be very grateful to you :)
Walter Roberson
Walter Roberson el 31 de Oct. de 2017
Note: Yash would not have been notified of your comment. You can contact Yash by clicking on Yash and using the Contact button on the profile.
Can you pls send the code for speech to text for Matlab to sanchana2902prakash@gmail.com
Image Analyst
Image Analyst el 23 de En. de 2018
Sanchana, see this link
sneha madre
sneha madre el 22 de Feb. de 2018
Can you pls send the code for OCR image text to speech conversion for Matlab.and reduce a delay in TTS pronounce. nehamadre123@gmail.com thanks
Maryam Khalifa
Maryam Khalifa el 26 de Abr. de 2018
can you please send the code for speech to text , we need help please :( salhaaalbloushi@gmail.com
erbina selvia
erbina selvia el 10 de Dic. de 2020
can you please send the code for speech to text, i hope you help me please email : erbinaselvia4@gmail.com
thnkyou
Can you please send the code for speech to text, i hope you help me please
e mail: oguzhan.kutlu25@erzurum.edu.tr

Iniciar sesión para comentar.

 Respuesta aceptada

Shaun VanWeelden
Shaun VanWeelden el 28 de Dic. de 2012

3 votos

First off, Google is amazing.
Secondly, have you had a look at this? It looks like something that could be useful to you. http://www.ee.ic.ac.uk/hp/staff/dmb/voicebox/voicebox.html

Más respuestas (8)

Yash
Yash el 30 de Jun. de 2012

2 votos

for sppech to text you will have to define different words in the data base and for that also there are some microsoft utlities you have to install

3 comentarios

naseha qammar
naseha qammar el 12 de Jun. de 2016
Hi Max you have worked already on speech o text and text to speech codes .Can you give me that code as m also working on it.
Image Analyst
Image Analyst el 12 de Jun. de 2016
See my answer (elsewhere on this page) that I just added.
Danilo Teran
Danilo Teran el 7 de Nov. de 2016
Hi all, maybe could you guide me on how to convert microhone's audio to text on Matlba please?

Iniciar sesión para comentar.

deepak
deepak el 29 de Mzo. de 2014

0 votos

  • *how to get text from audio file ?* *
hi.. guys i'm doing a project in image processing.. for my application to start I required to take the text from a audio which is pre-recoded. I know there is a tts file which gives voice to text using Net.addAssembly
in similar way using Net.addAssembly. I required the code for speech to text (or) audio to text.. I required it immediately.. If anyone tried it please post to help me..
or if u know that, what are all the class I required from Net.AddAssembly to invoke to get the text from the audio. please let me know as soon as possible..
thanks in advance..

2 comentarios

ziad alalaily
ziad alalaily el 7 de Jul. de 2015
Did you reach anything yet?
Jay Krypton
Jay Krypton el 7 de Feb. de 2017
i need this too.. anyone can share it?

Iniciar sesión para comentar.

Image Analyst
Image Analyst el 12 de Jun. de 2016
Here is text to speech code for Windows operating system:
% Program to do text to speech.
% Get user's sentence
userPrompt = 'What do you want the computer to say?';
titleBar = 'Text to Speech';
defaultString = 'Hello World! MATLAB is an awesome program!';
caUserInput = inputdlg(userPrompt, titleBar, 1, {defaultString});
if isempty(caUserInput)
return;
end; % Bail out if they clicked Cancel.
caUserInput = char(caUserInput); % Convert from cell to string.
NET.addAssembly('System.Speech');
obj = System.Speech.Synthesis.SpeechSynthesizer;
obj.Volume = 100;
Speak(obj, caUserInput);

5 comentarios

Danilo Teran
Danilo Teran el 7 de Nov. de 2016
Hi, maybe could you guide me on how to convert microhone's audio to text on Matlba please? I speak and I need that information but i do not how to do it.
Image Analyst
Image Analyst el 7 de Nov. de 2016
I gave code for text to speech. That's a whole lot simpler than speech to text which is what you want. That's like orders of magnitude more difficult since there is no code built in to do that that I'm aware of.
Mohamed
Mohamed el 6 de Jul. de 2020
Editada: Mohamed el 6 de Jul. de 2020
how can i store that computer voice on my device?
Abhijith
Abhijith el 12 de Jul. de 2023
How to ask the computer to speak the displayed text from command window
Image Analyst
Image Analyst el 12 de Jul. de 2023
Did you try typing in the code I gave? If not, why not?
If you don't want to ask the user you could do
>> NET.addAssembly('System.Speech');
>> obj = System.Speech.Synthesis.SpeechSynthesizer;
>> obj.Volume = 100;
>> Speak(obj, 'Hello Abhijith');
From then on, you could just enter the Speak line -- no need to do the first 3 lines after they've been done once of course.

Iniciar sesión para comentar.

REXY J
REXY J el 12 de Oct. de 2016

0 votos

CODE FOR SPEECH TO TEXT

1 comentario

Walter Roberson
Walter Roberson el 12 de Oct. de 2016
Yes, it is fine to post a link to code you have written that does speech to text.

Iniciar sesión para comentar.

Pooja A N
Pooja A N el 24 de Nov. de 2016
Editada: Pooja A N el 24 de Nov. de 2016

0 votos

can anyone help me out in text to speech conversion in matlab
Sudeshna Roy
Sudeshna Roy el 13 de Mzo. de 2017

0 votos

can anyone help me out in speech to text conversion?

3 comentarios

Walter Roberson
Walter Roberson el 13 de Mzo. de 2017
https://www.mathworks.com/matlabcentral/answers/?term=tag%3A%22speech+to+text%22
Sudeshna Roy
Sudeshna Roy el 18 de Mzo. de 2017
Can i get the code for speech to text conversion? It will be very much helpful for my project.
Walter Roberson
Walter Roberson el 18 de Mzo. de 2017
Look at the voicebox link already provided or read the posts at the link I provided.

Iniciar sesión para comentar.

Rohit K
Rohit K el 13 de Feb. de 2018
Editada: Walter Roberson el 26 de Abr. de 2018
%Speak the text;
tts('I can speak.');
% List availble voices;
tts('I can speak.','List');
% Do not speak out, store the speech in a variable;
w = tts('I can speak.',[],-4,44100); wavplay(w,44100);

Categorías

Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.

Preguntada:

Max
el 29 de Jun. de 2012

Comentada:

el 12 de Jul. de 2023

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by