mrmBot-Matrix/commands/slow.js

23 lines
691 B
JavaScript
Raw Normal View History

const magick = require("../utils/image.js");
2020-03-27 02:10:59 +00:00
exports.run = async (message) => {
message.channel.sendTyping();
const image = await require("../utils/imagedetect.js")(message);
if (image === undefined) return `${message.author.mention}, you need to provide a GIF to slow down!`;
const { buffer, type } = await magick.run({
cmd: "speed",
path: image.path,
2020-10-20 01:24:53 +00:00
slow: true,
onlyGIF: true,
type: image.type
});
if (type === "nogif") return `${message.author.mention}, that isn't a GIF!`;
return {
2020-03-27 02:10:59 +00:00
file: buffer,
2020-10-20 01:24:53 +00:00
name: `slow.${type}`
};
2020-03-27 02:10:59 +00:00
};
exports.aliases = ["slowdown", "slower", "gifspeed2"];
exports.category = 5;
exports.help = "Makes a GIF slower";