We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to achieve functionality similar to Audible Captions https://www.audible.com/about/newsroom/audible-captions-a-demonstration i.e. a streamed transcription synced with the playing audio.
I thought of using iContext::runStreamed
iContext::runStreamed
I could block in sFullParams::new_segment_callback to stop the transcription getting too far ahead of the audio.
sFullParams::new_segment_callback
For cancelation, maybe I could return a non-zero HRESULT from sFullParams::new_segment_callback.
HRESULT
There doesn't seem to be a way to implement seeking... i.e. starting a transcription partway through the file
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to achieve functionality similar to Audible Captions https://www.audible.com/about/newsroom/audible-captions-a-demonstration
i.e. a streamed transcription synced with the playing audio.
I thought of using
iContext::runStreamed
I could block in
sFullParams::new_segment_callback
to stop the transcription getting too far ahead of the audio.For cancelation, maybe I could return a non-zero
HRESULT
fromsFullParams::new_segment_callback
.There doesn't seem to be a way to implement seeking... i.e. starting a transcription partway through the file
The text was updated successfully, but these errors were encountered: