我正在尝试使用Google Cloud Speech API,因此我可以传递音频文件并接收翻译后的文字但我仍然坚持整合。我已经有api密钥和所需的一切,但无法找到如何使用它本身的反应。在文档中只有node.js的解释(来自javascript部分)。还有几个库已过时或只支持一个操作系统。有人成功了吗?
文档中的node.js示例:
// Imports the Google Cloud client library
const Speech = require('@google-cloud/speech');
// Your Google Cloud Platform project ID
const projectId = 'YOUR_PROJECT_ID';
// Instantiates a client
const speechClient = Speech({
projectId: projectId
});
// The name of the audio file to transcribe
const fileName = './resources/audio.raw';
// The audio file's encoding and sample rate
const options = {
encoding: 'LINEAR16',
sampleRate: 16000
};
// Detects speech in the audio file
speechClient.recognize(fileName, options)
.then((results) => {
const transcription = results[0];
console.log(`Transcription: ${transcription}`);
});
答案 0 :(得分:0)
将此服务器部署到Heroku,然后从您的react本机应用程序发送帖子或获取请求到此服务器并在您的应用程序上获得结果。 要发送帖子或获取请求,请使用Axios库https://github.com/axios/axios
答案 1 :(得分:0)
您可以使用Google App Engine部署代码,并从react-native发出发布请求。 还需要配置和使用Google云存储来存储音频文件以进行转换。 这是我的服务器代码。
Owner