TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
learner learner
NA
29
155.5k
Japanese text to speech conversion
Feb 8 2011 12:14 AM
I wanna convert japanese text to speech using microsoft speech sdk 5.1. I have found there 5 kinds of voices including simplified chinese. Chinese text to speech works fine.
foreach (ISpeechObjectToken Token in speech.GetVoices(string.Empty, string.Empty))
{
string str = Token.GetDescription(49).ToString();
if (str.Equals("Microsoft Simplified Chinese"))
{
speech.Voice = speech.GetVoices(string.Empty, string.Empty).Item(3);//Item(cmbVoices.SelectedIndex);
}
// Populate the ComboBox Entries ..
cmbVoices.Items.Add(Token.GetDescription(49));
}
In the documentation of Microsoft speech sdk I have found that the sdk supports Japanese text.
How can i convert Japanese text to speech?
Reply
Answers (
1
)
sum of datagridview values
[WINFORM] System Requirements for an application developed using Dot net 2.0