Looks similar to the new FUTO keyboard: https://voiceinput.futo.org/
Transcribro: On-device Accurate Speech-to-text
11–20 of 66 posts
Re: Transcribro: On-device Accurate Speech-to-text
#12Accrescent hype is comically overdone.
Re: Transcribro: On-device Accurate Speech-to-text
#13Earlier quoted context omitted.
I did some core work on TTS at Google, at several layers, and I've never quite understood what people mean by streaming vs. not. In each and every case I'm familiar with, streaming means "send the whole audio thus far to the inference engine, inference it, and send back the transcription" I have a Flutter library that does the same flow as this (though via ONNX, so I can cover all platforms), and Whisper + Silero is…
"streaming" in this case is like another reply said: transcriptions appear as I talk. Compared to not-streaming in which the service waits for silence, then processes the captured speech, then returns some transcription. Is your Flutter library available? And does it run locally? I'm looking for a good Flutter streaming (in the sense above) speech recognition library. vosk looks good, but it's lacking some configurab…
[1] example app shows how to do everything, there's basic doc, but man the amount of nonsense you need to know to pull it all together is just too hard to document without a specific Q. Do feel free to file an issue
Re: Transcribro: On-device Accurate Speech-to-text
#14Looks similar to the new FUTO keyboard: https://voiceinput.futo.org/
I've been using this for a while (the voice input, not their keyboard) and it's so refreshing to be able to just speak and have the output come out as fully formed, well punctuated sentences with proper capitalization.
Re: Transcribro: On-device Accurate Speech-to-text
#15Earlier quoted context omitted.
I've been using this for a while (the voice input, not their keyboard) and it's so refreshing to be able to just speak and have the output come out as fully formed, well punctuated sentences with proper capitalization.
I agree. No more "speaking punctuation". Just talk as normal and it comes out fully formed
Re: Transcribro: On-device Accurate Speech-to-text
#16Looks similar to the new FUTO keyboard: https://voiceinput.futo.org/
Re: Transcribro: On-device Accurate Speech-to-text
#17Earlier quoted context omitted.
I did some core work on TTS at Google, at several layers, and I've never quite understood what people mean by streaming vs. not. In each and every case I'm familiar with, streaming means "send the whole audio thus far to the inference engine, inference it, and send back the transcription" I have a Flutter library that does the same flow as this (though via ONNX, so I can cover all platforms), and Whisper + Silero is…
I think in practical terms (at least for me): - streaming == I talk and the text appears as I talk - batched == I talk, and after I'm done talking some processing happens and the text gets populated
Re: Transcribro: On-device Accurate Speech-to-text
#18Re: Transcribro: On-device Accurate Speech-to-text
#19Earlier quoted context omitted.
But open source, which is a pretty big difference
FUTO and Transcribro are open source.
https://gitlab.futo.org/alex/voiceinput/-/blob/master/LICENS...
> FUTO Source First License 1.0
> You may use or modify the software only for non-commercial purposes
Re: Transcribro: On-device Accurate Speech-to-text
#20Earlier quoted context omitted.
But open source, which is a pretty big difference
FUTO and Transcribro are open source.
[1] https://github.com/futo-org/android-keyboard/blob/master/LIC...