我正在使用下面的 Node.js 脚本片段,
'use strict';
var google_speech = require('google-speech');
google_speech.ASR({
debug: true,
lang: 'en_US',
developer_key: '<Google API Key>',
file: '<voice file name with path>',
}, function(err, httpResponse, xml){
if(err){
console.log(err);
}else{
console.log(httpResponse.statusCode, xml)
}
}
);
我从一些音频文件中得到的输出,但不是全部。即使例如一个flac
文件正在提供输出,但另一个flac
文件没有。
此 API 是否需要任何特定类型的文件才能提供输出。如果是,请告诉我文件的具体类型/格式。