0
我已經看過谷歌開發網站上的演示以及git hub https://github.com/GoogleCloudPlatform/nodejs-docs-samples/tree/master/speech。谷歌雲語音API:Nodejs
我的問題是如何傳遞語言參數?
我使用它是這樣的:
var speech = require('@google-cloud/speech')({
projectId: 'xxxxxxxx',
keyFilename: 'xxxxxxx'
});
speech.recognize(file, {
encoding: 'FLAC',
sampleRate: 44100
}, function(err, transcript) {
if(err) {
throw err;
});
它可以識別英文演講。根據我們的使用情況如何更改langugae?將感謝任何幫助。謝謝。
,我知道。但該選項在哪裏?要傳遞語言代碼 –
請在「sampleRate」之後添加此參數:44100 – Cassidy
謝謝。花了這麼多小時:) –