필터 지우기
필터 지우기

Hello can anyone give me the codes for text to speech conversion and also speech recognition thank you

조회 수: 17 (최근 30일)
Need matlab code for text to speech conversion and speech recognition

답변 (5개)

Image Analyst
Image Analyst 2015년 9월 17일
For text to speech, if you have Windows, you can try my demo program:
% 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);
Speech recognition is harder I think, because of all the different speakers and accents they could have. Anyway, I don't have any demo for that.
  댓글 수: 3
Walter Roberson
Walter Roberson 2016년 2월 19일
Anisio, see
ispc()
ismac()
isunix()
Note: isunix() is true on MAC, so if you wanted to test for Linux that could be isunix() && ~ismac()

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


Balaji Prasath Madhaiyan
Balaji Prasath Madhaiyan 2017년 2월 19일
can matlab produce arabic text to speech conversion?
  댓글 수: 3
huda farooqui
huda farooqui 2018년 3월 11일
Hey Roberson.. please let me know how can i do part of speech tagging in english text to speech conversion?
and one more thing do you know how to split a waveform in matlab when it reaches minimum threshold... i want to split wave when it reaches minimum amplitude ...
Walter Roberson
Walter Roberson 2018년 3월 11일
Modern English is losing the distinction between adjectives and adverbs, so it is becoming difficult to do part of speech tagging. Semantic analysis in English is difficult work. Google translate does not even try: it does neural network type work by comparing corpuses of translated texts. Google reported that its AI have spontaneously developed an internal intermediary language for translation between different languages.

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


Anisio Gomes
Anisio Gomes 2016년 2월 22일
Hi Image, do you have this text to speech code for mac?
  댓글 수: 3
taha khan
taha khan 2018년 4월 26일
'say' is not recognized as an internal or external command, operable program or batch file.
this error shows when copy and past? why?
Walter Roberson
Walter Roberson 2018년 4월 26일
taha khan:
Anisio Gomes asked specifically about code for mac. "say" is code specific to Mac. The error message you posted is specific to MS Windows, so we can tell that you are not using Mac.

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


taha khan
taha khan 2018년 4월 26일
Error using NET.addAssembly Attempt to execute SCRIPT addAssembly as a function: C:\Program Files\MATLAB\R2017a\toolbox\matlab\winfun\NET\+NET\addAssembly.m
Error in speech (line 11) NET.addAssembly('System.Speech');
this error comes when write code of convert to speech why ?

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

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by