我对IBM的文本具有语音转换功能,可将mp3转换为文本。当我console.log
时,函数结果的输出如下所示:
result Promise { <pending> }
这就是我所做的。有什么建议吗?
let finalResult = speechToText.recognize(params)
.then(result => {
JSON.stringify(result, null, 2);
})
.catch(err => {
err;
});
console.log('finalResult',finalResult)