text to voice conversion

I am working in the text to speech conversion in Matlab. The text is present in a notepad. I request you to kindly assist me in converting the text to speech
I will really thankful if you can assist for coding in Matlab.
Thank you for your time and support.

 Accepted Answer

Image Analyst
Image Analyst on 5 Jan 2019
Edited: Image Analyst on 5 Jan 2019
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);
To get text out of a text file, you can use fileread().

4 Comments

Aditya Shau
Aditya Shau on 5 Jan 2019
Edited: Aditya Shau on 5 Jan 2019
It is fine, thank you. But if my data is in onedim cell array with characters then how to convert it into text and then to speech. KIndly help
Did you see this line:
caUserInput = char(caUserInput); % Convert from cell to string.
? That converts the variable from a cell array into a string.
Use a microphone and your audio recorder of your OS to record the sound your computer makes to your hard drive or SSD. Or use an app like Audacity: https://www.audacityteam.org/ (freeware, open source).
Jennish Shah
Jennish Shah on 4 Dec 2020
Edited: Image Analyst on 4 Dec 2020
While audacity team is a good resource, checkout https://myvoice2text.com/. This is an amazing tool that I've been using lately.

Sign in to comment.

More Answers (1)

Community Treasure Hunt

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

Start Hunting!