CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 13 of 13
  1. #1
    Join Date
    Sep 2007
    Posts
    405

    Looking for Text To Speech library for C# ?

    In Visual Studio C#. I cannot find a Text To Speech library in languages other than English, does Visual Studio C# support the Text To Speech library for Vietnamese ? or 3rd party supported libraries for C# language.

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Looking for Text To Speech library for C# ?


  3. #3
    Join Date
    Sep 2007
    Posts
    405

    Re: Looking for Text To Speech library for C# ?

    The links you sent to me do not support Vietnamese language.

  4. #4
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Looking for Text To Speech library for C# ?

    Quote Originally Posted by dongtrien View Post
    The links you sent to me do not support Vietnamese language.
    Vietnamese is supported depending on the functionality you need.

  5. #5
    Join Date
    Sep 2007
    Posts
    405

    Re: Looking for Text To Speech library for C# ?

    I run the code below only the code "en-US, en-GB" I want to add the code "vi-VN" in win7, what should I do ?

    Code:
    foreach (RecognizerInfo ri in SpeechRecognitionEngine.InstalledRecognizers())
       {
            System.Diagnostics.Debug.WriteLine(ri.Culture.Name);
       }

  6. #6
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    Re: Looking for Text To Speech library for C# ?

    What region is your computer set to?
    Always use [code][/code] tags when posting code.

  7. #7
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Looking for Text To Speech library for C# ?

    Look up how to install speech recognizers if the region setting doesn't help..

  8. #8
    Join Date
    Sep 2007
    Posts
    405

    Re: Looking for Text To Speech library for C# ?

    I have a Vietnamese region set but don't have the "vi-VN" code, I think I need to install the voice support I need, by default only English support is not supported for other languages, I searched on google but not found.

  9. #9
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Looking for Text To Speech library for C# ?

    Quote Originally Posted by dongtrien View Post
    I have a Vietnamese region set but don't have the "vi-VN" code, I think I need to install the voice support I need, by default only English support is not supported for other languages, I searched on google but not found.
    How do you install speech recognizers?

  10. #10
    Join Date
    Sep 2007
    Posts
    405

    Re: Looking for Text To Speech library for C# ?

    I run the code below only the code "en-US, en-GB" I want to add the code "vi-VN" in win7, what should I do ?

    Code:
    foreach (RecognizerInfo ri in SpeechRecognitionEngine.InstalledRecognizers())
       {
            System.Diagnostics.Debug.WriteLine(ri.Culture.Name);
       }
    While microsoft supports pronunciation of other languages, see the link below:
    https://docs.microsoft.com/en-us/azu...nguage-support
    https://docs.microsoft.com/en-us/dot...tframework-4.8

  11. #11
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Looking for Text To Speech library for C# ?

    Quote Originally Posted by dongtrien View Post
    I run the code below only the code "en-US, en-GB" I want to add the code "vi-VN" in win7, what should I do ?

    Code:
    foreach (RecognizerInfo ri in SpeechRecognitionEngine.InstalledRecognizers())
       {
            System.Diagnostics.Debug.WriteLine(ri.Culture.Name);
       }
    While microsoft supports pronunciation of other languages, see the link below:
    https://docs.microsoft.com/en-us/azu...nguage-support
    https://docs.microsoft.com/en-us/dot...tframework-4.8
    As I've mentioned twice, research how to install a speech recognizer (in the language you need).

  12. #12
    Join Date
    Sep 2007
    Posts
    405

    Re: Looking for Text To Speech library for C# ?

    I have searched on google but could not find this manual

  13. #13
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Looking for Text To Speech library for C# ?

    Try searching bing for "vietnamese speech recognition pack".

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured