someone get me audio working pls

This commit is contained in:
Supositware 2019-01-18 22:35:12 +01:00
parent d3630feef9
commit bf24849b59

View file

@ -25,46 +25,50 @@ class TtsvcCommand extends Command {
} }
async exec(message, args) { async exec(message, args) {
let text = args.text; try {
let text = args.text;
// Construct the request // Construct the request
const request = { const request = {
input: { text: text }, input: { text: text },
// Select the language and SSML Voice Gender (optional) // Select the language and SSML Voice Gender (optional)
voice: { languageCode: 'en-US', ssmlGender: 'NEUTRAL' }, voice: { languageCode: 'en-US', ssmlGender: 'NEUTRAL' },
// Select the type of audio encoding // Select the type of audio encoding
audioConfig: { audioEncoding: 'MP3' }, audioConfig: { audioEncoding: 'MP3' },
}; };
// Performs the Text-to-Speech request // Performs the Text-to-Speech request
gclient.synthesizeSpeech(request, (err, response) => { gclient.synthesizeSpeech(request, (err, response) => {
if (err) {
console.error('ERROR:', err);
return;
}
// Write the binary audio content to a local file
fs.writeFile('ttsvc.mp3', response.audioContent, 'binary', async err => {
if (err) { if (err) {
console.error('ERROR:', err); console.error('ERROR:', err);
message.channel.send('An error has occured, the message is probably too long');
return; return;
} }
console.log('Audio content written to file: ttsvc.mp3');
// Write the binary audio content to a local file
fs.writeFile('ttsvc.mp3', response.audioContent, 'binary', async err => {
if (err) {
console.error('ERROR:', err);
message.channel.send('An error has occured, the message is probably too long');
return;
}
console.log('Audio content written to file: ttsvc.mp3');
if (message.member.voice.channel) { if (message.member.voice.channel) {
const connection = await message.member.voice.channel.join(); const connection = await message.member.voice.channel.join();
const dispatcher = connection.play('../../ttsvc.mp3'); const dispatcher = connection.play('../../ttsvc.mp3');
dispatcher.on('finish', () => { dispatcher.on('finish', () => {
dispatcher.destroy(); dispatcher.destroy();
}); });
} else { } else {
message.reply('You need to join a voice channel first!'); message.reply('You need to join a voice channel first!');
} }
});
}); });
}); } catch (err) {
console.error(err);
}
} }
} }
module.exports = TtsvcCommand; module.exports = TtsvcCommand;