android-js/androidjs

Text to Speech API

tubbadu opened this issue · 1 comments

Is your feature request related to a problem? Please describe.
I'm building an app with androidjs, and I need the application to speak a text, and it should work offline

There are several online TTS API, but I need it to be working offline, so I need to use the default Android Text To Speech (settings > general settings > language and input > Text To Speech)

is there a way to do this? should this be implemented or is there a way already?

async function speak(spookvalue) {
    console.log("gonna say: ", spookvalue)

    let synth = window.speechSynthesis;
    //synth.pause()

    let utterThis = new SpeechSynthesisUtterance(spookvalue);

    synth.speak(utterThis);
}

Close this issue