Provides Text to Speech functionality for Armenian language.
The library uses .NET System.Speech library which does not provide text to speech functionality for Armenian language.
Namespace: ArmenianTextToSpeech
Assembly: ArmenianTextToSpeech.dll
Provides access to the functionality of an text to speech engine for Armenian language.
Initializes a new instance of the Speech class.
Speaks the given Armenian word with normal speed.
Speaks the given Armenian word with the given speed.
- This example speaks word "Արարատ" with speed = 0.
var word = "Արարատ";
var speech = new Speech();
speech.Speak(word);
- This example speaks word "Արարատ" with speed = 4.
var word = "Արարատ";
var speed = 4;
var speech = new Speech();
speech.Speak(word, speed);
Visualizer Tool uses ArmenianTextToSpeech.dll library and provides simple UI to speak an Armenian word.