2018-12-30 01:20:24 +01:00
|
|
|
const { Command } = require('discord-akairo');
|
2018-12-09 01:38:45 +01:00
|
|
|
const textToSpeech = require('@google-cloud/text-to-speech');
|
2019-05-18 03:01:57 +02:00
|
|
|
const rand = require('../../../rand.js');
|
2018-12-09 01:38:45 +01:00
|
|
|
const gclient = new textToSpeech.TextToSpeechClient();
|
2018-12-30 02:16:44 +01:00
|
|
|
const fs = require('fs');
|
2020-02-01 02:36:48 +01:00
|
|
|
const os = require('os');
|
2018-12-09 01:38:45 +01:00
|
|
|
|
2018-12-30 01:20:24 +01:00
|
|
|
class TtsvcCommand extends Command {
|
2019-01-02 08:09:45 +01:00
|
|
|
constructor() {
|
|
|
|
super('ttsvc', {
|
|
|
|
aliases: ['ttsvc'],
|
2019-03-30 04:43:44 +01:00
|
|
|
category: 'fun',
|
2019-11-22 20:56:54 +01:00
|
|
|
clientPermissions: ['SPEAK'],
|
2019-01-02 08:09:45 +01:00
|
|
|
args: [
|
|
|
|
{
|
|
|
|
id: 'text',
|
2019-01-10 20:45:29 +01:00
|
|
|
type: 'string',
|
2019-06-23 03:41:59 +02:00
|
|
|
prompt: {
|
|
|
|
start: 'Write something so i can say it back in Google tts',
|
|
|
|
},
|
2019-01-10 20:45:29 +01:00
|
|
|
match: 'rest'
|
2019-01-02 08:09:45 +01:00
|
|
|
}
|
|
|
|
],
|
|
|
|
description: {
|
|
|
|
content: 'Say what you wrote in voice channel',
|
|
|
|
usage: '[text]',
|
|
|
|
examples: ['hello']
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-12-09 01:38:45 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
async exec(message, args) {
|
2019-01-18 22:44:16 +01:00
|
|
|
let text = args.text;
|
2020-02-01 02:36:48 +01:00
|
|
|
let output = `${os.tmpdir()}/${message.id}_tts.mp3`;
|
|
|
|
|
2019-02-08 19:06:23 +01:00
|
|
|
text = rand.random(text, message);
|
2018-12-30 02:16:00 +01:00
|
|
|
|
2019-01-18 22:44:16 +01:00
|
|
|
// Construct the request
|
|
|
|
const request = {
|
|
|
|
input: { text: text },
|
|
|
|
// Select the language and SSML Voice Gender (optional)
|
|
|
|
voice: { languageCode: 'en-US', ssmlGender: 'NEUTRAL' },
|
|
|
|
// Select the type of audio encoding
|
|
|
|
audioConfig: { audioEncoding: 'MP3' },
|
|
|
|
};
|
|
|
|
|
|
|
|
// Performs the Text-to-Speech request
|
|
|
|
gclient.synthesizeSpeech(request, (err, response) => {
|
|
|
|
if (err) {
|
|
|
|
console.error('ERROR:', err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the binary audio content to a local file
|
2020-02-01 02:36:48 +01:00
|
|
|
fs.writeFile(output, response.audioContent, 'binary', async err => {
|
2019-01-02 08:09:45 +01:00
|
|
|
if (err) {
|
|
|
|
console.error('ERROR:', err);
|
2020-07-16 09:42:07 +02:00
|
|
|
message.channel.send('An error has occurred, the message is probably too long');
|
2019-01-18 22:44:16 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
return;
|
|
|
|
}
|
2019-01-18 22:44:16 +01:00
|
|
|
|
|
|
|
const voiceChannel = message.member.voice.channel;
|
2020-04-10 16:30:43 +02:00
|
|
|
if (!voiceChannel) return message.channel.send('Please enter a voice channel first.');
|
2019-01-18 22:44:16 +01:00
|
|
|
try {
|
|
|
|
const connection = await voiceChannel.join();
|
2020-02-01 02:36:48 +01:00
|
|
|
const dispatcher = connection.play(output);
|
2019-01-18 22:44:16 +01:00
|
|
|
dispatcher.once('finish', () => voiceChannel.leave());
|
|
|
|
dispatcher.once('error', () => voiceChannel.leave());
|
|
|
|
return null;
|
|
|
|
} catch (err) {
|
|
|
|
voiceChannel.leave();
|
2019-11-09 13:36:56 +01:00
|
|
|
return message.reply(`Oh no, an error occurred: \`${err.message}\`.`);
|
2019-01-18 22:44:16 +01:00
|
|
|
}
|
2019-01-02 08:09:45 +01:00
|
|
|
});
|
2019-01-18 22:44:16 +01:00
|
|
|
});
|
2019-01-02 08:09:45 +01:00
|
|
|
}
|
2018-12-30 01:20:24 +01:00
|
|
|
}
|
|
|
|
module.exports = TtsvcCommand;
|