천현우

client move

...@@ -59,7 +59,7 @@ async function testGoogleTextToSpeech(audioBuffer) { ...@@ -59,7 +59,7 @@ async function testGoogleTextToSpeech(audioBuffer) {
59 app.post('/upload_sound', upload.any(), async (req, res) => { 59 app.post('/upload_sound', upload.any(), async (req, res) => {
60 console.log("Getting text transcription.."); 60 console.log("Getting text transcription..");
61 let transcription = await testGoogleTextToSpeech(req.files[0].buffer); 61 let transcription = await testGoogleTextToSpeech(req.files[0].buffer);
62 - console.log("Text transcription: " + transcription); 62 + console.log("Text transcription: " + transcription);
63 res.status(200).send(transcription); 63 res.status(200).send(transcription);
64 }); 64 });
65 app.listen(port, () => { 65 app.listen(port, () => {
......