-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix wavguess crash
- Loading branch information
Showing
3 changed files
with
113 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package = 'lua-vosk' | ||
version = '1.3-5' | ||
|
||
source = { | ||
url = 'git+https://github.com/igor725/lua-vosk', | ||
tag = 'v1.3-5' | ||
} | ||
|
||
description = { | ||
summary = 'Vosk binding for Lua.', | ||
detailed = [[ | ||
Vosk is an offline open source speech recognition toolkit. | ||
It enables speech recognition for 20+ languages and dialects - | ||
English, Indian English, German, French, Spanish, Portuguese, | ||
Chinese, Russian, Turkish, Vietnamese, Italian, Dutch, Catalan, | ||
Arabic, Greek, Farsi, Filipino, Ukrainian, Kazakh, Swedish, | ||
Japanese, Esperanto, Hindi, Czech, Polish. | ||
This library implements easy to use interface for Vosk API. | ||
]], | ||
homepage = 'https://github.com/igor725/lua-vosk', | ||
license = 'MIT' | ||
} | ||
|
||
dependencies = { | ||
'lua >= 5.1' | ||
} | ||
|
||
build = { | ||
type = 'builtin', | ||
modules = { | ||
luavosk = { | ||
sources = { | ||
'src/luamodel.c', 'src/luarecognizer.c', | ||
'src/luaspkmodel.c', 'src/main.c', | ||
'src/voskbridge.c' | ||
}, | ||
defines = { | ||
'VOSK_ENABLE_JSON' | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters