2018-12-30 01:20:24 +01:00
|
|
|
const { Command } = require('discord-akairo');
|
|
|
|
const textToSpeech = require('@google-cloud/text-to-speech');
|
2019-02-08 19:06:23 +01:00
|
|
|
const rand = require('../../rand.js');
|
2018-12-30 01:20:24 +01:00
|
|
|
const gclient = new textToSpeech.TextToSpeechClient();
|
2018-12-30 02:16:44 +01:00
|
|
|
const fs = require('fs');
|
2018-12-30 01:20:24 +01:00
|
|
|
|
|
|
|
class TtsCommand extends Command {
|
2019-01-02 08:09:45 +01:00
|
|
|
constructor() {
|
|
|
|
super('tts', {
|
|
|
|
aliases: ['tts'],
|
2019-03-30 04:43:44 +01:00
|
|
|
category: 'fun',
|
2019-01-02 08:09:45 +01:00
|
|
|
args: [
|
|
|
|
{
|
|
|
|
id: 'text',
|
2019-01-10 20:45:29 +01:00
|
|
|
type: 'string',
|
|
|
|
match: 'rest'
|
2019-01-02 08:09:45 +01:00
|
|
|
}
|
|
|
|
],
|
|
|
|
description: {
|
|
|
|
content: 'Send a mp3 of what you wrote in tts',
|
|
|
|
usage: '[text]',
|
|
|
|
examples: ['hello']
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-12-30 01:20:24 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
async exec(message, args) {
|
|
|
|
let text = args.text;
|
2019-01-02 04:35:34 +01:00
|
|
|
|
2019-02-08 19:06:23 +01:00
|
|
|
text = rand.random(text, message);
|
|
|
|
|
2019-01-02 08:09:45 +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' },
|
|
|
|
};
|
2019-01-02 04:35:34 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
// Performs the Text-to-Speech request
|
|
|
|
gclient.synthesizeSpeech(request, (err, response) => {
|
|
|
|
if (err) {
|
2019-01-02 10:48:26 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
console.error('ERROR:', err);
|
|
|
|
return;
|
|
|
|
}
|
2019-01-02 04:35:34 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
// Write the binary audio content to a local file
|
|
|
|
fs.writeFile('tts.mp3', response.audioContent, 'binary', err => {
|
|
|
|
if (err) {
|
|
|
|
console.error('ERROR:', err);
|
|
|
|
message.channel.send('An error has occured, the message is probably too long');
|
2019-01-02 10:48:26 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
console.log('Audio content written to file: tts.mp3');
|
|
|
|
message.channel.send({ files: ['./tts.mp3'] });
|
|
|
|
});
|
2019-01-02 10:48:26 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
});
|
|
|
|
}
|
2018-12-30 01:20:24 +01:00
|
|
|
}
|
|
|
|
module.exports = TtsCommand;
|