Skip to content

This library provides Text to Speech functionality for Armenian language. The library allows to convert armenian words to speech with different speed. You can use Visualizer to test the library.

Notifications You must be signed in to change notification settings

arsentd/ArmenianTextToSpeech

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ArmenianTextToSpeech.dll

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.

Speech Class

Namespace: ArmenianTextToSpeech
Assembly: ArmenianTextToSpeech.dll
Provides access to the functionality of an text to speech engine for Armenian language.

Constructors

public Speech();

Initializes a new instance of the Speech class.

Methods

Speech.Speak(string word);

Speaks the given Armenian word with normal speed.

Speech.Speak(string word, int speed);

Speaks the given Armenian word with the given speed.

Example

  1. This example speaks word "Արարատ" with speed = 0.
var word = "Արարատ";
var speech = new Speech();
speech.Speak(word);
  1. This example speaks word "Արարատ" with speed = 4.
var word = "Արարատ";
var speed = 4;
var speech = new Speech();
speech.Speak(word, speed);

Visualizer.exe

Visualizer Tool uses ArmenianTextToSpeech.dll library and provides simple UI to speak an Armenian word. Untitled

About

This library provides Text to Speech functionality for Armenian language. The library allows to convert armenian words to speech with different speed. You can use Visualizer to test the library.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages