1

Web Speech API のデモを試しています: https://www.google.com/intl/en/chrome/demos/speech.html。実行するには、少なくとも Chrome のバージョン 25.0 が必要です。

Web Speech API を継続的に使用して、長い文字起こし (10 ~ 15 分) を実行しようとしています。ただし、約 1 ~ 2 分後に「ネットワーク」エラーが発生することに気付きました (Web Speech API 仕様で言及されているように: https://dvcs.w3.org/hg/speech-api/raw-file/ヒント/speechapi.html#dfn-onerror )。

この「ネットワーク」エラーが1〜2分後にかなり一貫して発生する理由と、Web Speech APIを構成してより長く継続的な文字起こしを行う方法があるかどうかを知っている人はいますか?

ありがとうございました!

4

1 に答える 1

0

Web speech API usually has 60 seconds of recognition time.

You'll need to call the speechrecognition.onend() method and then call the speechrecognition.start(). So the recognition continues after stop.

于 2016-02-03T12:42:20.350 に答える