diff options
author | amanarora_09 <aman.arora9848@gmail.com> | 2023-03-28 22:27:17 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-08-08 20:38:17 +0200 |
commit | 8eb3ea414f84d3f28c14231ee8dda7876295e48e (patch) | |
tree | e11001ae1228054657ec475add06f1278d7a900a /meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-in_0.4.bb | |
parent | fe8c4a516b3bff5f531caebd43c1f1ac137b9959 (diff) |
Rework and update offline voice agent
This brings the voice agent to the state shown at AMM and EW.
Change-Id: I31ac4adc874a206e6e598ba116523ecc7eb99fc9
Signed-off-by: amanarora_09 <aman.arora9848@gmail.com>
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-in_0.4.bb')
-rw-r--r-- | meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-in_0.4.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-in_0.4.bb b/meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-in_0.4.bb new file mode 100644 index 00000000..5a886e0a --- /dev/null +++ b/meta-offline-voice-agent/recipes-vosk/vosk-model/vosk-model-small-en-in_0.4.bb @@ -0,0 +1,23 @@ +SUMMARY = "Lightweight Indian English model for mobile applications" +HOMEPAGE = "https://alphacephei.com/vosk/" +LICENSE = "Apache-2.0" +# LIC_URL = "${COMMON_LICENSE_DIR}/Apache-2.0" +LIC_FILES_CHKSUM = "file://${WORKDIR}/models.md;beginline=44;endline=44;md5=a9131c3e00accfcddf94bff9e8b43018" + +SRC_URI = " \ + https://alphacephei.com/vosk/models/vosk-model-small-en-in-0.4.zip;name=model \ + https://raw.githubusercontent.com/alphacep/vosk-space/master/models.md;name=license \ + " +# License listed on https://alphacephei.com/vosk/models + +SRC_URI[model.sha256sum] = "20663dcac4d5cb783a579c54d98339344a688e4ec6e1b4a4b059fd1235454cc7" +SRC_URI[license.sha256sum] = "3fbe0ee1fa914cb4b1cea2f2d7201a155884727cd0afbb51a267b66a73cb3444" + +do_install() { + install -d ${D}/usr/share/vosk + cp -R ${WORKDIR}/vosk-model-small-en-in-0.4/ ${D}/usr/share/vosk/ +} + +FILES:${PN} += " /usr/share/vosk /usr/share/vosk/vosk-model-small-en-in-0.4 " + +# RPROVIDES:${PN} += "virtual/vosk-model" |