Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Build configs

TtsRelayGui can be built in these configs:

  • Any CPU - Debug/Release
  • x86 - Debug/Release

The wrapper C libraries are currently 32-bit only. Some will always be 32-bit because we do not have source and/or the company is out of business. If you are using any of these libraries, your main process will need to be compiled in 32-bit. If you are not using these libraries you can use 'Any CPU' which will decide at runtime. Note that TtsRelay only has 'Any CPU', because the main process dictates which platform to compile on, not class libraries.

Regarding FestivalDLL, compiling in Debug mode is not supported due to limitations in the dependency lib. It's not recommended compiling TtsRelay in Debug mode when using this wrapper.

Building

TtsRelay can be found here :https://svn.ict.usc.edu/svn_vh/trunk/in /core/TtsRelay.

It has these build projects:

  • CerevoiceDll\CerevoiceDLL.vcproj  - This builds the Cerevoice wrapper .dll.  It depends on Cerevoice, placed in \lib\cerevoice.  Found here: https://svn.ict.usc.edu/svn_saso/saso/trunk/lib/cerevoice
  • FestivalDll\FestivalDLL.vcproj  - This builds the Festival wrapper .dll.  It depends on Festival, placed in \lib\festival.  Found here:  https://svn.ict.usc.edu/svn_vh/trunk/lib/festival
  • TtsRelay.csproj   - This builds the TtsRelay class library
  • gui\TtsRelayGui.csproj  - This builds the TtsRelayGui app for use as a standalone process

...