Transcription of continuous stream?
See original GitHub issueThis issue is for a: (mark with an x
)
- [ ] bug report -> please search issues before submitting
- [X] feature request
- [ ] documentation issue or request
- [ ] regression (a behavior that used to work and stopped in a new release)
Minimal steps to reproduce
- create SpeechFactory
- create SpeechRecognizer
- try to continuously send byte[]
- not available…
Expected/desired behavior
Similar to the ProjectOxford Speech Recognition SDK (DataClient
):
_speechClient = SpeechRecognitionServiceFactory.CreateDataClient(SpeechRecognitionMode.LongDictation, "en-us", "key");
_speechClient.SendAudio(audioChunk, audioChunk.Length); // audioChunk is byte[]
OS and Version?
Windows 10
Versions
Any 😃
Mention any other details that might be useful
Is there a way to continuously stream audio to the speech service and get back text transcript? Not a file, but a series of byte arrays for more than hour (live speech transcription). I’m currently solving it with the old SDK and WebSockets, but I’m looking for ways how to do it with this one (since there are limitations).
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Streaming and partial results - Amazon Transcribe
Amazon Transcribe breaks up the incoming audio stream based on natural speech segments, such as a change in speaker or a pause in...
Read more >Transcribe audio from streaming input
This section demonstrates how to transcribe streaming audio, like the input from a microphone, to text. Streaming speech recognition allows you to stream...
Read more >continuous - transcription, translation and pronunciation online
Transcription and pronunciation of the word "continuous" in British and American variants. Detailed translation and examples.
Read more >Continuous - pronunciation: audio and phonetic transcription
Practice pronunciation of continuous and other English words with our Pronunciation Trainer. Try it for free! No registration required. American EnglishBritish ...
Read more >How to pronounce continuous in English (1 out of 15860)
Below is the UK transcription for 'continuous': Modern IPA: kəntɪ́njʉwəs; Traditional IPA: kənˈtɪnjuːəs; 4 syllables: "kuhn" + "TIN" + "yoo" + "uhs" ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks again, @zhouwangzw , I was able to make it work with custom AudioInputStream. I wrote a blogpost about it - posting here as a reference for others: https://codez.deedx.cz/posts/continuous-speech-to-text/
@msimecek Glad to know it works, and thank you for writing the nice blog to share your experience.
Thanks,