speech to text and text to speech conversion (STS)
2 ビュー (過去 30 日間)
古いコメントを表示
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
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
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
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
0 件のコメント
その他の回答 (8 件)
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 件のコメント
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
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 件のコメント
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 件のコメント
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
2016 年 10 月 12 日
CODE FOR SPEECH TO TEXT
1 件のコメント
Walter Roberson
2016 年 10 月 12 日
Yes, it is fine to post a link to code you have written that does speech to text.
Sudeshna Roy
2017 年 3 月 13 日
can anyone help me out in speech to text conversion?
3 件のコメント
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
2017 年 3 月 18 日
Look at the voicebox link already provided or read the posts at the link I provided.
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);
0 件のコメント
jibrahim
2020 年 2 月 11 日
Audio Toolbox supports calling into popular 3rd-party APIs for speech transcription and synthesis:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Audio I/O and Waveform Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!