1
0
Fork 0
akairo
loicbersier 5 years ago
parent fc4f96908a
commit 8527f1f319

4
.gitignore vendored

@ -29,8 +29,8 @@ ttsvc.mp3
music.mp3 music.mp3
dectalk.wav dectalk.wav
dectalkvc.wav dectalkvc.wav
sam.mp3 sam.wav
samvc.mp3 samvc.wav
# json # json

@ -72,9 +72,9 @@ class samCommand extends Command {
'Content-Type': 'audio/mpeg', 'Content-Type': 'audio/mpeg',
}, },
}).then((result) => { }).then((result) => {
const outputFilename = './sam.mp3'; const outputFilename = './sam.wav';
fs.writeFileSync(outputFilename, result.data); fs.writeFileSync(outputFilename, result.data);
return message.channel.send({files: ['./sam.mp3']}); return message.channel.send({files: ['./sam.wav']});
}); });
} }

@ -72,14 +72,15 @@ class samvcCommand extends Command {
'Content-Type': 'audio/mpeg', 'Content-Type': 'audio/mpeg',
}, },
}).then(async (result) => { }).then(async (result) => {
const outputFilename = './samvc.mp3'; const outputFilename = './samvc.wav';
fs.writeFile(outputFilename, result.data, async function(err) { fs.writeFile(outputFilename, result.data, async function(err) {
if (err) console.error(err); if (err) console.error(err);
const voiceChannel = message.member.voice.channel; const voiceChannel = message.member.voice.channel;
if (!voiceChannel) return message.say('Please enter a voice channel first.'); if (!voiceChannel) return message.say('Please enter a voice channel first.');
try { try {
const connection = await voiceChannel.join(); const connection = await voiceChannel.join();
const dispatcher = connection.play('./dectalkvc.wav'); const dispatcher = connection.play('./samvc.wav');
dispatcher.once('finish', () => voiceChannel.leave()); dispatcher.once('finish', () => voiceChannel.leave());
dispatcher.once('error', () => voiceChannel.leave()); dispatcher.once('error', () => voiceChannel.leave());
return null; return null;

Binary file not shown.
Loading…
Cancel
Save