diff options
author | Naoto Yamaguchi <i33399_YAMAGUCHI@aisin-aw.co.jp> | 2016-11-18 22:52:18 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2016-11-24 11:21:40 +0000 |
commit | 950b3ddda80852edc8f8de0f28690ac1909f403e (patch) | |
tree | 47eeaadcdea23d2914a3fa872b2ea0d17b72f7b7 /recipes-multimedia | |
parent | 56ebf697eb35021fe32797713b20d92a7c484b2d (diff) |
TTS Engine: Added support for HTS engine
This patch will add a temporary TTS engine for CES 2017 demo
HTS engine is a common part of Japanese and English TTS engines
These TTS engines are necessary for voice-guide function of navigation app
Signed-off-by: Naoto Yamaguchi <i33399_YAMAGUCHI@aisin-aw.co.jp>
Change-Id: I238098fa4812cafd9b376fb994653a97ad23de46
Diffstat (limited to 'recipes-multimedia')
-rwxr-xr-x | recipes-multimedia/hts_engine/hts-engine_1.10.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes-multimedia/hts_engine/hts-engine_1.10.bb b/recipes-multimedia/hts_engine/hts-engine_1.10.bb new file mode 100755 index 000000000..3522f666a --- /dev/null +++ b/recipes-multimedia/hts_engine/hts-engine_1.10.bb @@ -0,0 +1,19 @@ +SUMMARY = "hts_engine is software to synthesize speech waveform from HMMs trained by the HMM-based speech synthesis system (HTS)." +HOMEPAGE = "http://hts-engine.sourceforge.net/" +SECTION = "libs" +LICENSE = "BSD" + +LIC_FILES_CHKSUM = "file://COPYING;md5=b3be85b37c90bfd4d34d79a0e3f28700" + +inherit autotools + +BBCLASSEXTEND = "native" + +S = "${WORKDIR}/hts_engine_API-${PV}" + + +SRC_URI = "http://downloads.sourceforge.net/hts-engine/hts_engine_API-${PV}.tar.gz" + +SRC_URI[md5sum] = "5626d1e2522659e93fb295f0b42339f5" +SRC_URI[sha256sum] = "e2132be5860d8fb4a460be766454cfd7c3e21cf67b509c48e1804feab14968f7" + |