14

在 Web Speech API 的示例中,始终指定语法。例如,在MDN 的 color change example中,语法为:

#JSGF V1.0;
grammar colors;
public <color> = aqua | azure | beige | bisque | black | blue | brown | chocolate | coral | crimson | cyan | fuchsia | ghostwhite | gold | goldenrod | gray | green | indigo | ivory | khaki | lavender | lime | linen | magenta | maroon | moccasin | navy | olive | orange | orchid | peru | pink | plum | purple | red | salmon | sienna | silver | snow | tan | teal | thistle | tomato | turquoise | violet | white | yellow ;

但是,在实际使用 API 时(在 Chrome 54.0.2840.71 上),结果函数

  1. 有时返回不符合提供的语法的字符串
  2. 不提供描述语音的解析树

那么语法实际上是做什么的呢?我怎样才能获得这些行为中的任何一种(仅限于语法并查看解析树)?

4

2 回答 2

3

目前有一个开放的 Chromium 问题专门针对此问题:

https://bugs.chromium.org/p/chromium/issues/detail?id=799849&q=SpeechRecognition%20grammar&colspec=ID%20Pri%20M%20Stars%20ReleaseBlock%20Component%20Status%20Owner%20Summary%20OS%20Modified

于 2019-05-15T21:17:16.353 回答
0

我知道这是一个老问题,但我正在经历一些与此类似的问题,因为这是我最近一直试图弄清楚的问题,并且我有一个解决方案。语法似乎不起作用,至少不可靠或不符合预期。

作为解决方案,我编写了一个函数来解决问题。event.results使用回调提供它SpeecRecognition.onresult,并确保maxAlternatives设置为 10 之类的值。还提供一个短语列表。它将返回它找到的包含其中一个短语的第一个转录本,否则它只会返回具有最高置信度的转录本。

function ExtractTranscript(phrases, results) {
  // Loop through the alternatives to check if any of our hot phrases are contained in them.
  for (let result in results[0]) {
    if (new RegExp(phrases.join("|")).test(results[0][result].transcript)) {
      return results[0][result].transcript; // Return them if they are
    }
  }
  return results[0][0].transcript; // Otherwise return the highest confidence
}

对于长成绩单等,可能会改进此解决方案,但它适用于我的情况,适用于短语等短命令。希望它也可以帮助其他人。

于 2021-07-17T00:26:46.047 回答