Microsoft sam
This commit is contained in:
parent
94880cf6e0
commit
a7f32e5930
2 changed files with 102 additions and 0 deletions
45
commands/fun/tts/sam.js
Normal file
45
commands/fun/tts/sam.js
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
const { Command } = require('discord-akairo');
|
||||||
|
const axios = require('axios');
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
|
class samCommand extends Command {
|
||||||
|
constructor() {
|
||||||
|
super('sam', {
|
||||||
|
aliases: ['sam'],
|
||||||
|
category: 'fun',
|
||||||
|
args: [
|
||||||
|
{
|
||||||
|
id: 'samMessage',
|
||||||
|
type: 'string',
|
||||||
|
match: 'rest'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
description: {
|
||||||
|
content: 'Send a mp3 of what you wrote in Microsoft Sam tts',
|
||||||
|
usage: '[text]',
|
||||||
|
examples: ['Here comes the roflcopter soisoisoisoisoi']
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async exec(message, args) {
|
||||||
|
args.samMessage = args.samMessage.replace('\n', ' ');
|
||||||
|
args.samMessage = encodeURI(args.samMessage);
|
||||||
|
|
||||||
|
return axios.request({
|
||||||
|
responseType: 'arraybuffer',
|
||||||
|
url: `https://tetyys.com/SAPI4/SAPI4?text=${args.samMessage}&voice=Sam&pitch=100&speed=100`,
|
||||||
|
method: 'get',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'audio/mpeg',
|
||||||
|
},
|
||||||
|
}).then((result) => {
|
||||||
|
const outputFilename = './sam.mp3';
|
||||||
|
fs.writeFileSync(outputFilename, result.data);
|
||||||
|
return message.channel.send({files: ['./sam.mp3']});
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = samCommand;
|
57
commands/fun/tts/samvc.js
Normal file
57
commands/fun/tts/samvc.js
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
const { Command } = require('discord-akairo');
|
||||||
|
const axios = require('axios');
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
|
class samvcCommand extends Command {
|
||||||
|
constructor() {
|
||||||
|
super('samvc', {
|
||||||
|
aliases: ['samvc'],
|
||||||
|
category: 'fun',
|
||||||
|
args: [
|
||||||
|
{
|
||||||
|
id: 'samMessage',
|
||||||
|
type: 'string',
|
||||||
|
match: 'rest'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
description: {
|
||||||
|
content: 'Repeat what you said in voice chat with Microsoft Sam tts',
|
||||||
|
usage: '[text]',
|
||||||
|
examples: ['Here comes the roflcopter soisoisoisoisoi']
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async exec(message, args) {
|
||||||
|
args.samMessage = args.samMessage.replace('\n', ' ');
|
||||||
|
args.samMessage = encodeURI(args.samMessage);
|
||||||
|
|
||||||
|
return axios.request({
|
||||||
|
responseType: 'arraybuffer',
|
||||||
|
url: `https://tetyys.com/SAPI4/SAPI4?text=${args.samMessage}&voice=Sam&pitch=100&speed=100`,
|
||||||
|
method: 'get',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'audio/mpeg',
|
||||||
|
},
|
||||||
|
}).then(async (result) => {
|
||||||
|
const outputFilename = './samvc.mp3';
|
||||||
|
fs.writeFileSync(outputFilename, result.data);
|
||||||
|
|
||||||
|
const voiceChannel = message.member.voice.channel;
|
||||||
|
if (!voiceChannel) return message.say('Please enter a voice channel first.');
|
||||||
|
try {
|
||||||
|
const connection = await voiceChannel.join();
|
||||||
|
const dispatcher = connection.play('./samvc.wav');
|
||||||
|
dispatcher.once('finish', () => voiceChannel.leave());
|
||||||
|
dispatcher.once('error', () => voiceChannel.leave());
|
||||||
|
return null;
|
||||||
|
} catch (err) {
|
||||||
|
voiceChannel.leave();
|
||||||
|
return message.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = samvcCommand;
|
Loading…
Reference in a new issue