我管理了「概覽教程」:https://cloud.google.com/speech/docs/getting-started 然後我嘗試使用我自己的音頻文件。我上傳了一個採樣率爲16000Hz的.flac文件。Google雲語音識別「INVALID_ARGUMENT」
我只是改變了sync-request.json
文件下面託管在谷歌雲存儲我自己的音頻文件(gs://my-bucket/test4.flac
)
{
"config": {
"encoding":"flac",
"sample_rate": 16000
},
"audio": {
"uri":"gs://my-bucket/test4.flac"
}
}
文件是公認的,但該請求返回「INVALID_ARGUMENT」錯誤
{
"error": {
"code": 400,
"message": "Unable to recognize speech, code=-73541, possible error in recognition config. Please correct the config and retry the request.",
"status": "INVALID_ARGUMENT"
}
}