2020-08-28 02:34:12 +00:00
|
|
|
const magick = require("../utils/image.js");
|
2020-04-23 22:08:53 +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 freeze!`;
|
|
|
|
if (image.type !== "gif") return `${message.author.mention}, that isn't a GIF!`;
|
2020-10-06 19:48:22 +00:00
|
|
|
const buffer = await magick.run({
|
2020-08-28 02:34:12 +00:00
|
|
|
cmd: "freeze",
|
|
|
|
path: image.path,
|
|
|
|
loop: false,
|
|
|
|
type: image.type.toUpperCase(),
|
|
|
|
delay: image.delay ? (100 / image.delay.split("/")[0]) * image.delay.split("/")[1] : 0
|
|
|
|
});
|
2020-04-23 22:08:53 +00:00
|
|
|
return {
|
|
|
|
file: buffer,
|
|
|
|
name: `freeze.${image.type}`
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["noloop", "once"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Makes a GIF only play once";
|