필터 지우기
필터 지우기

speech to text and text to speech conversion (STS)

조회 수: 8 (최근 30일)
Max
Max 2012년 6월 29일
댓글: Image Analyst 2023년 7월 12일
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
erbina selvia
erbina selvia 2020년 12월 10일
can you please send the code for speech to text, i hope you help me please email : erbinaselvia4@gmail.com
thnkyou
Oguzhan Zafer Kutlu
Oguzhan Zafer Kutlu 2021년 1월 1일
Can you please send the code for speech to text, i hope you help me please
e mail: oguzhan.kutlu25@erzurum.edu.tr

댓글을 달려면 로그인하십시오.

채택된 답변

Shaun VanWeelden
Shaun VanWeelden 2012년 12월 28일
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

추가 답변 (8개)

Yash
Yash 2012년 6월 30일
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
Image Analyst
Image Analyst 2016년 6월 12일
See my answer (elsewhere on this page) that I just added.
Danilo Teran
Danilo Teran 2016년 11월 7일
Hi all, maybe could you guide me on how to convert microhone's audio to text on Matlba please?

댓글을 달려면 로그인하십시오.


deepak
deepak 2014년 3월 29일
  • *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
ziad alalaily
ziad alalaily 2015년 7월 7일
Did you reach anything yet?
Jay Krypton
Jay Krypton 2017년 2월 7일
i need this too.. anyone can share it?

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2016년 6월 12일
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
Abhijith
Abhijith 2023년 7월 12일
How to ask the computer to speak the displayed text from command window
Image Analyst
Image Analyst 2023년 7월 12일
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.

댓글을 달려면 로그인하십시오.


REXY J
REXY J 2016년 10월 12일
CODE FOR SPEECH TO TEXT
  댓글 수: 1
Walter Roberson
Walter Roberson 2016년 10월 12일
Yes, it is fine to post a link to code you have written that does speech to text.

댓글을 달려면 로그인하십시오.


Pooja A N
Pooja A N 2016년 11월 24일
편집: Pooja A N 2016년 11월 24일
can anyone help me out in text to speech conversion in matlab

Sudeshna Roy
Sudeshna Roy 2017년 3월 13일
can anyone help me out in speech to text conversion?
  댓글 수: 3
Sudeshna Roy
Sudeshna Roy 2017년 3월 18일
Can i get the code for speech to text conversion? It will be very much helpful for my project.
Walter Roberson
Walter Roberson 2017년 3월 18일
Look at the voicebox link already provided or read the posts at the link I provided.

댓글을 달려면 로그인하십시오.


Rohit K
Rohit K 2018년 2월 13일
편집: Walter Roberson 2018년 4월 26일
%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);

jibrahim
jibrahim 2020년 2월 11일
Audio Toolbox supports calling into popular 3rd-party APIs for speech transcription and synthesis:

카테고리

Help CenterFile Exchange에서 Speech Recognition에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by