sir,i want a program which converts text to speech, but the problem is the generated speech should resemble the pre-recorded voice. pls help me ...

1 view (last 30 days)
guidance for creating program for cloning human voice

Answers (1)

Image Analyst
Image Analyst on 22 Jun 2014
I'm sure there are companies that have spent years, or decades, developing and improving such a capability. If you need a MATLAB-only solution, see this thread http://www.mathworks.com/matlabcentral/answers/69945-matlab-code-to-convert-text-into-speech
Or look up SpeechSynthesizer in the help where you'll find code such as this:
NET.addAssembly('System.Speech');
obj = System.Speech.Synthesis.SpeechSynthesizer;
obj.Volume = 100;
Speak(obj,'You can use .NET Libraries in MATLAB');
  3 Comments

Sign in to comment.

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!