mrmBot-Matrix/commands/speed.js

22 lines
744 B
JavaScript
Raw Normal View History

const magick = require("../utils/image.js");
2020-02-13 19:29:42 +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 speed up!`;
if (image.type !== "gif") return `${message.author.mention}, that isn't a GIF!`;
const buffer = await magick.run({
cmd: "speed",
path: image.path,
type: image.type.toUpperCase(),
delay: image.delay ? (100 / image.delay.split("/")[0]) * image.delay.split("/")[1] : 0
});
2020-07-23 00:54:58 +00:00
return {
file: buffer,
name: "speed.gif"
};
2020-02-13 19:29:42 +00:00
};
exports.aliases = ["speedup", "fast", "gifspeed"];
exports.category = 5;
exports.help = "Makes a GIF faster";