mrmBot-Matrix/commands/image-editing/speed.js

21 lines
548 B
JavaScript
Raw Normal View History

import ImageCommand from "../../classes/imageCommand.js";
class SpeedCommand extends ImageCommand {
params() {
const speed = parseInt(this.args[0]);
return {
2021-06-10 03:50:14 +00:00
speed: isNaN(speed) || speed < 1 ? 2 : speed
};
}
static description = "Makes an image sequence faster";
static aliases = ["speedup", "fast", "gifspeed", "faster"];
static arguments = ["{multiplier}"];
static requiresGIF = true;
static noImage = "You need to provide an image/GIF to speed up!";
static command = "speed";
}
export default SpeedCommand;