New effect!

Signed-off-by: loicbersier <loic.bersier1@gmail.com>
This commit is contained in:
loicbersier 2020-05-11 00:47:15 +02:00
parent f0d9b853c5
commit 62f068bc92

View file

@ -83,6 +83,11 @@ class ytpCommand extends Command {
match: 'flag',
flag: ['--squidward']
},
{
id: 'how',
match: 'flag',
flag: ['--how']
},
{
id: 'debug',
match: 'flag',
@ -191,7 +196,7 @@ class ytpCommand extends Command {
temp: os.tmpdir(),
sourceList: asset,
intro: args.force ? './asset/ytp/intro.mp4' : null,
outro: './asset/ytp/outro.mp4', // Need an outro or it won't work
outro: './asset/ytp/outro.mp4',
OUTPUT_FILE: `${os.tmpdir()}/${message.id}_YTP.mp4`,
MAX_CLIPS: MAX_CLIPS,
transitions: true,
@ -207,7 +212,8 @@ class ytpCommand extends Command {
effect_SpeedUp: !args.speedUp,
effect_SlowDown: !args.slowDown,
effect_Dance: !args.dance,
effect_Squidward: !args.squidward
effect_Squidward: !args.squidward,
effect_How: !args.how
}
};