Spaces:
Running
Running
Update helpers/tts.js
Browse files- helpers/tts.js +48 -65
helpers/tts.js
CHANGED
@@ -33,70 +33,53 @@ if (!key || !region) {
|
|
33 |
* @param {*} text text to convert to audio/speech
|
34 |
* @param {*} filename optional - best for long text - temp file for converted speech/audio
|
35 |
*/
|
36 |
-
const textToSpeech = async (text, voice)=> {
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
}
|
85 |
-
|
86 |
-
|
87 |
-
synthesizer.speakSsmlAsync(
|
88 |
-
ssml,
|
89 |
-
result => {
|
90 |
-
|
91 |
-
synthesizer.close();
|
92 |
-
resolve({blendData, filename: `/speech-${randomString}.mp3`});
|
93 |
-
|
94 |
-
},
|
95 |
-
error => {
|
96 |
-
synthesizer.close();
|
97 |
-
reject(error);
|
98 |
-
});
|
99 |
-
});
|
100 |
};
|
101 |
|
102 |
-
module.exports = textToSpeech;
|
|
|
33 |
* @param {*} text text to convert to audio/speech
|
34 |
* @param {*} filename optional - best for long text - temp file for converted speech/audio
|
35 |
*/
|
36 |
+
const textToSpeech = async (text, voice) => {
|
37 |
+
return new Promise((resolve, reject) => {
|
38 |
+
let ssml = SSML.replace("__TEXT__", text);
|
39 |
+
|
40 |
+
const speechConfig = sdk.SpeechConfig.fromSubscription(key, region);
|
41 |
+
speechConfig.speechSynthesisOutputFormat = 5; // mp3
|
42 |
+
|
43 |
+
let audioConfig = null;
|
44 |
+
|
45 |
+
let randomString = Math.random().toString(36).slice(2, 7);
|
46 |
+
let filename = `/tmp/speech-${randomString}.mp3`; // Write to /tmp directory
|
47 |
+
audioConfig = sdk.AudioConfig.fromAudioFileOutput(filename);
|
48 |
+
|
49 |
+
let blendData = [];
|
50 |
+
let timeStep = 1/60;
|
51 |
+
let timeStamp = 0;
|
52 |
+
|
53 |
+
const synthesizer = new sdk.SpeechSynthesizer(speechConfig, audioConfig);
|
54 |
+
|
55 |
+
synthesizer.visemeReceived = function (s, e) {
|
56 |
+
var animation = JSON.parse(e.animation);
|
57 |
+
|
58 |
+
_.each(animation.BlendShapes, blendArray => {
|
59 |
+
let blend = {};
|
60 |
+
_.each(blendShapeNames, (shapeName, i) => {
|
61 |
+
blend[shapeName] = blendArray[i];
|
62 |
+
});
|
63 |
+
|
64 |
+
blendData.push({
|
65 |
+
time: timeStamp,
|
66 |
+
blendshapes: blend
|
67 |
+
});
|
68 |
+
timeStamp += timeStep;
|
69 |
+
});
|
70 |
+
};
|
71 |
+
|
72 |
+
synthesizer.speakSsmlAsync(
|
73 |
+
ssml,
|
74 |
+
result => {
|
75 |
+
synthesizer.close();
|
76 |
+
resolve({ blendData, filename: `/speech-${randomString}.mp3` });
|
77 |
+
},
|
78 |
+
error => {
|
79 |
+
synthesizer.close();
|
80 |
+
reject(error);
|
81 |
+
}
|
82 |
+
);
|
83 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
};
|
85 |
|
|