add code text to speech voices windows 7 ?
-
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 ?
foreach (RecognizerInfo ri in SpeechRecognitionEngine.InstalledRecognizers())
{
System.Diagnostics.Debug.WriteLine(ri.Culture.Name);
} -
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 ?
foreach (RecognizerInfo ri in SpeechRecognitionEngine.InstalledRecognizers())
{
System.Diagnostics.Debug.WriteLine(ri.Culture.Name);
} -
The link you sent me is a pronunciation program but there is no C# code and I can't find the *.dll pronunciation library, the program is written in C language, I am looking for C# code to read Vietnamese, microsoft now supports Vietnamese you see my links below
// Create an in-process speech recognizer for the en-US locale.
using ( SpeechRecognitionEngine recognizer = new SpeechRecognitionEngine( new System.Globalization.CultureInfo("vi-VN")))//You must set up Vietnamese pronunciation codes or pronunciation codes for other languages you need
{
...
}[SpeechRecognitionEngine Class (System.Speech.Recognition) | Microsoft Docs](https://docs.microsoft.com/en-us/dotnet/api/system.speech.recognition.speechrecognitionengine?redirectedfrom=MSDN&view=netframework-4.8) [Language support - Speech Service - Azure Cognitive Services | Microsoft Docs](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/language-support) by default, the program only English pronunciation does not support other languages.
-
The link you sent me is a pronunciation program but there is no C# code and I can't find the *.dll pronunciation library, the program is written in C language, I am looking for C# code to read Vietnamese, microsoft now supports Vietnamese you see my links below
// Create an in-process speech recognizer for the en-US locale.
using ( SpeechRecognitionEngine recognizer = new SpeechRecognitionEngine( new System.Globalization.CultureInfo("vi-VN")))//You must set up Vietnamese pronunciation codes or pronunciation codes for other languages you need
{
...
}[SpeechRecognitionEngine Class (System.Speech.Recognition) | Microsoft Docs](https://docs.microsoft.com/en-us/dotnet/api/system.speech.recognition.speechrecognitionengine?redirectedfrom=MSDN&view=netframework-4.8) [Language support - Speech Service - Azure Cognitive Services | Microsoft Docs](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/language-support) by default, the program only English pronunciation does not support other languages.
You do realise that the Language support you point to is for the Azure Cognitive Services version don't you? That's a paid-for cloud service, and not the one you have through the
SpeechRecognitionEngine
. You can use the one I linked to via P/Invoke. -
You do realise that the Language support you point to is for the Azure Cognitive Services version don't you? That's a paid-for cloud service, and not the one you have through the
SpeechRecognitionEngine
. You can use the one I linked to via P/Invoke.Hi Pete O'Hanlon! I don't think the 2 pages I resend charge for one microsoft page, the other one of Azure, thank you for answering my questions. In case other countries do not support voice pronunciation like Vietnam, those countries often use which programming language ? Is there any library for C# programming support ?