You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Speech-to-Text does not include punctuation marks in the results from speech recognition. We can, however, request that Speech-to-Text detect and insert punctuation in transcription results. Speech-to-Text can recognize commas, question marks, and periods in transcription requests.
By default, Speech-to-Text does not include punctuation marks in the results from speech recognition. We can, however, request that Speech-to-Text detect and insert punctuation in transcription results. Speech-to-Text can recognize commas, question marks, and periods in transcription requests.
This can be enabled by setting the
enableAutomaticPunctuation
field totrue
in theRecognitionConfig
parameters for the request.https://cloud.google.com/speech-to-text/docs/automatic-punctuation#speech-enhanced-model-protocol
This is what I did in speechtotext.cpp:
recognition_config->enable_automatic_punctuation();
But it doesn't seem to work. I also made sure to have the latest googleapi from https://github.com/googleapis/googleapis.
The text was updated successfully, but these errors were encountered: