我想在我的 C++ 程序中使用 Festival TTS。
所以我已经从http://www.cstr.ed.ac.uk/downloads/festival/2.0.95/下载了所有文件
然后我开始阅读 C++ API 的手册(http://www.cstr.ed.ac.uk/projects/festival/manual/festival_28.html),但在手册中他们说:
要使用 Festival,您必须包含festival/src/include/festival.h' which in turn will include the necessary other include files in
festival/src/include' 和speech_tools/include' you should ensure these are included in the include path for you your program. Also you will need to link your program with
festival/src/lib/libFestival.a'、speech_tools/lib/libestools.a',
speech_tools/lib/libestbase.a' 和 `speech_tools/lib/libeststring.a' 以及任何其他可选诸如网络音频之类的库。"
我正在使用 UBUNTU 10.04(默认安装节日包,我可以通过节日命令从终端使用它)和 GCC 4.4.3
但问题是我是 GCC 的新手,我不明白我必须包含哪些文件才能运行我的 C++ 代码,而且我也不知道如何将库与我的 C++ 代码链接。
所以请准确告诉我我必须包含哪些文件以及如何与库链接如果有人已经使用 C++ 的节日 tts 然后请发布你的代码
谢谢