Web Speech API #13460
-
Hi I came across this Web Speech API, I just want to ask if the apps created from tauri can use the API or if not then what other APIs does the tauri created apps dont have access? Also what do you recommend in creating a speech to text or vice versa? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
On Windows both parts (recognition and tts) should just work.
Think of tauri development as normal browser development, there you also have to deal with safari/firefox/chrome/mobile differences. eg check caniuse and mdn for support. List of webview versions: https://v2.tauri.app/reference/webview-versions/ |
Beta Was this translation helpful? Give feedback.
On Windows both parts (recognition and tts) should just work.
On macOS afaik both parts should work as well though recognition requires Info.plist values set #6208
On Linux tts requires building webkitgtk yourself. So support is at least on the horizon. recognition is unsupported and afaik work on that hasn't begun yet.
Think of tauri development as normal browser development, there you also have to deal with safari/firefox/chrome/mobile differences. eg check caniuse and mdn for support. List of webview versions: https://v2.tauri.app/reference/webview-versions/