-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
Add SentenceInfo.msg and WordInfo.msg #28
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Header header | ||
speech_recognition_msgs/WordInfo[] words |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
string[] transcript # candidate words of speech-to-text API | ||
float32[] confidence # confidence of transcript | ||
float32[] confidence # confidence of transcript | ||
speech_recognition_msgs/SentenceInfo[] sentences # contains the beginning and ending times of each word. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# please see below URL for more details. | ||
# https://cloud.google.com/speech-to-text/docs/reference/rest/v1/speech/recognize#wordinfo | ||
float64 start_time | ||
float64 end_time | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please add field description or change field name in order to make target use of each field clear to users. |
||
string word | ||
float64 confidence | ||
int32 speaker_tag |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What kind of use are you planning for header of SentenceInfo.msg?