70 lines
No EOL
1.7 KiB
JavaScript
70 lines
No EOL
1.7 KiB
JavaScript
const { Command } = require('discord-akairo');
|
|
const textToSpeech = require('@google-cloud/text-to-speech');
|
|
const rand = require('../../../rand.js');
|
|
const gclient = new textToSpeech.TextToSpeechClient();
|
|
const fs = require('fs');
|
|
const os = require('os');
|
|
|
|
class TtsCommand extends Command {
|
|
constructor() {
|
|
super('tts', {
|
|
aliases: ['tts'],
|
|
category: 'fun',
|
|
clientPermissions: ['ATTACH_FILES'],
|
|
args: [
|
|
{
|
|
id: 'text',
|
|
type: 'string',
|
|
prompt: {
|
|
start: 'Write something so i can say it back in Google tts',
|
|
},
|
|
match: 'rest'
|
|
}
|
|
],
|
|
description: {
|
|
content: 'Send a mp3 of what you wrote in tts',
|
|
usage: '[text]',
|
|
examples: ['hello']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message, args) {
|
|
let text = args.text;
|
|
let output = `${os.tmpdir()}/${message.id}_tts.mp3`;
|
|
|
|
text = rand.random(text, message);
|
|
|
|
// 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
|
|
fs.writeFile(output, response.audioContent, 'binary', err => {
|
|
if (err) {
|
|
console.error('ERROR:', err);
|
|
message.channel.send('An error has occurred, the message is probably too long');
|
|
|
|
return;
|
|
}
|
|
console.log('Audio content written to file: tts.mp3');
|
|
message.channel.send({ files: [output] });
|
|
});
|
|
|
|
});
|
|
}
|
|
}
|
|
module.exports = TtsCommand; |