(此问题被标记为可能是重复的,但据我所知,并非如此),因为另一个问题是关于如何写入本地磁盘的,这不是我的问题。我可以写服务器磁盘没有问题,但是这样做会使Meteor重新启动。)
我的客户端代码中有一个Meteor.call(),它可以按预期工作,将Google Cloud Text-to-Speech文件保存到服务器并在客户端中创建指向声音文件的链接。但是,每次调用Meteor时,Meteor服务器会在完成任务约2秒后重新启动。这是客户端代码:
(client/main.js)
Meteor.call('get.tts.links', tempSoundPath, voice, currentForeign,
currentExample, function(error, result) {
if (error) {
alert('Error');
} else {
Session.set("links", result);
soundLink1 = 'tempsoundfiles/' + result[0] + ".mp3";
if (!result[1]) soundLink2 = "";
else soundLink2 = 'tempsoundfiles/' + result[1] + ".mp3";
}
});
这是服务器代码的样子(对长度和冗余性很抱歉-我不是一个真正的程序员):
(server/main.js)
const textToSpeech = require('@google-cloud/text-to-speech');
....
....
'get.tts.links'(tempSoundPath, voice, currentForeign, currentExample) {
var path = "";
var soundFileId = "";
var text1 = currentForeign;
var text2 = currentExample;
var fileId = makepass();
const client = new textToSpeech.TextToSpeechClient();
const request = {
input: {
text: text1
},
voice: {
languageCode: "en-GB",
ssmlGender: 'MALE'
},
audioConfig: {
audioEncoding: 'MP3'
},
};
client.synthesizeSpeech(request, (err, response) => {
if (err) {
console.error('ERROR:', err);
return;
}
path = tempSoundPath + fileId + ".mp3";
console.log("path = " + path);
// Write the binary audio content to a local file
fs.writeFile(path, response.audioContent, 'binary', err => {
if (err) {
console.error('ERROR:', err);
return;
}
});
});
if (!text2 || text2 == "") {
var result = [];
result.push(fileId);
return result;
} else {
var fileId2 = makepass();
const request2 = {
input: {
text: text2
},
voice: {
languageCode: voice,
ssmlGender: 'FEMALE'
},
audioConfig: {
audioEncoding: 'MP3'
},
};
client.synthesizeSpeech(request2, (err, response) => {
if (err) {
console.error('ERROR:', err);
return;
}
var path2 = tempSoundPath + fileId2 + ".mp3";
// Write the binary audio content to a local file
fs.writeFile(path2, response.audioContent, 'binary', err => {
if (err) {
console.error('ERROR:', err);
return;
}
});
});
var result1 = [];
result1.push(fileId, fileId2);
return result1;
}
}
重新启动不会强制重新加载页面(我只在流星控制台上看到它们),但我认为它们会使速度大大降低。
答案 0 :(得分:2)
我不知道您的tempSoundPath值是什么,但是它的行为就像您正在将文件写入项目目录(在server / ...中的某个位置)。
Meteor将此视为源代码更改,并重建并重新启动服务器。
这甚至在生产环境中也不起作用,因为您可能没有对该文件系统的写权限。
最好将文件写入数据库或将文件传递给S3存储桶。有像ostrio :: files这样的流星软件包,可以帮助您解决这个问题。