Version 1.0.0

This commit is contained in:
msqr1
2024-03-27 16:55:34 -07:00
parent b2e70b24f2
commit 0a7a974dee
14 changed files with 72 additions and 38 deletions

View File

@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<script src="../Vosklet.js" async defer></script>
<script src="Vosklet.js" async defer></script>
<script>
window.onload = async () => {
async function start() {
let ctx = new AudioContext({sampleRate : 16000})
let module = await loadVosklet()
let model = await module.createModel("en-model.tgz","model","ID")
@@ -20,4 +20,5 @@
}
</script>
</head>
<button onclick="start()">Start</button>
</html>