Text to speech synthesis matlab code
조회 수: 38 (최근 30일)
이전 댓글 표시
Hello everyone can anyone pls tell me matlab code for text to speech synthesis without using system speech synthesizer...pls help me...
댓글 수: 0
채택된 답변
Image Analyst
2014년 10월 18일
Try this, if you have a Windows computer:
% 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);
댓글 수: 25
Image Analyst
2020년 6월 2일
The very first example in the help for audiowrite() shows you how to do that:
load handel.mat
filename = 'handel.wav';
audiowrite(filename,y,Fs);
You just have to make sure your filename extension has the correct extension to save it in whatever format you want, and audiowrite() will figure it out.
추가 답변 (6개)
Pertor
2016년 5월 27일
편집: Image Analyst
2016년 5월 27일
Perhaps this website may be useful. Though I don't get it.
댓글 수: 0
Deba Choudhury
2017년 8월 27일
It would quite a help if you explain the code working.
댓글 수: 3
Vinay Vinay
2019년 11월 8일
Can you please tell me code for the process you have told..creating .Net and invoking it
Image Analyst
2019년 11월 8일
With Windows systems, it's built-in or something.
sadiq husaini
2017년 10월 14일
Need the source code of this class (System.Speech.Synthesis.SpeechSynthesizer)? any one help me ? thanks in advance.
댓글 수: 2
Image Analyst
2017년 10월 14일
If you get hired onto the right team, you may be able to get to the source code.
Jan
2017년 10월 14일
@sadiq: You ask a Matlab forum to provide the source code of a Windows library, which is obviously a protected property of Microsoft. Seriously?
soundarya sopna
2018년 2월 17일
i need coding for extact of text and audio conversion
댓글 수: 2
sneha madre
2018년 2월 22일
how to reduce delay in text to speech conversion between two word or more in matlab .please send command.thanks
Priya Raj
2018년 3월 21일
Sir, We have obtained the count of objects in our program and we want to output that count in the form of speech,How it can be done,ty.
댓글 수: 0
Brian Hemmat
2020년 1월 25일
Audio Toolbox (R2019a or later) supports calling into popular 3rd-party APIs for speech synthesis:
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Audio Plugin Creation and Hosting에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!