alumae / kaldi-gstreamer-server

Real-time full-duplex speech recognition server, based on the Kaldi toolkit and the GStreamer framwork.
BSD 2-Clause "Simplified" License
1.07k stars 341 forks source link

Return the recognize result of every word. #143

Closed vzxxbacq closed 6 years ago

vzxxbacq commented 6 years ago

Hello @alumae , thanks for your great work. I'm using your code to build an online decoding asr server, but I found it only return the best result of every sentence. What should I do if i want to know the result of every second even if the result isn't the best.

alumae commented 6 years ago

Use the websocket based server API. See client.py.

vzxxbacq commented 6 years ago

Just need to override received_message.

Thank you, alumae.