27

C++ で書かれたオープンソースのテキスト読み上げ (TTS) エンジンを探しています。理想的には、高品質の音声 (以下の品質の定義を参照) を使用しますが、ソースが自由に利用できる限り、低品質の代替物でも問題ありません。

そのようなオープンソース プロジェクトは存在しますか?

「高品質」とは、「人間の音」、「非ロボット」を意味し、最終的な結果は次の 2 つの英語の例とほぼ同等です:例 1例 2

4

1 に答える 1

20

I think you'd find Flite an excellent project. It is widely used, open source, and multi platform. Developed at CMU, it has more rigor than a random developer's project.

However, it is written entirely in C for portability to mobile objects, perhaps reducing its academic value to you, if that is what you are after (looking for C++)

If you are not interested in a C library, that same site has a link to Festival, a C++ library from University of Edinburgh that is much more robust. However, it is much less portable and you'll have to work at it to get it working in your environment I'm sure.

于 2012-10-24T16:03:19.613 に答える