user1131662
user1131662

Reputation: 337

Find a simple speech engine

I'm doing a project on text recognition. One of the main points here is text-to-speech translation after the recognition. Could you help me find a very simple, plain speech engine for C++ Builder project? All that I've found were not only very complicated, but also they were suitable for MFC.

So, the problem is that I'd like to convert text to speech. No recognizing, just simple convertion. Share some info about this problem, maybe I should look it up somewhere?

Upvotes: -1

Views: 613

Answers (2)

Miguel Grinberg
Miguel Grinberg

Reputation: 67509

Flite is a small text to speech engine written in portable C, with no specific OS dependencies and with a permissive open source license. You will need to create a C++ Builder project to build it, but other than that it should work just fine.

Upvotes: 0

Remy Lebeau
Remy Lebeau

Reputation: 596833

Microsoft's Speech API (SAPI) is implemented as a set of COM objects, and thus is usable in C++Builder projects with minimal effort.

Upvotes: 0

Related Questions