forked from Supositware/Haha-Yes
New effect!
Signed-off-by: loicbersier <loic.bersier1@gmail.com>
This commit is contained in:
parent
f0d9b853c5
commit
62f068bc92
1 changed files with 8 additions and 2 deletions
|
@ -83,6 +83,11 @@ class ytpCommand extends Command {
|
||||||
match: 'flag',
|
match: 'flag',
|
||||||
flag: ['--squidward']
|
flag: ['--squidward']
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'how',
|
||||||
|
match: 'flag',
|
||||||
|
flag: ['--how']
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'debug',
|
id: 'debug',
|
||||||
match: 'flag',
|
match: 'flag',
|
||||||
|
@ -191,7 +196,7 @@ class ytpCommand extends Command {
|
||||||
temp: os.tmpdir(),
|
temp: os.tmpdir(),
|
||||||
sourceList: asset,
|
sourceList: asset,
|
||||||
intro: args.force ? './asset/ytp/intro.mp4' : null,
|
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`,
|
OUTPUT_FILE: `${os.tmpdir()}/${message.id}_YTP.mp4`,
|
||||||
MAX_CLIPS: MAX_CLIPS,
|
MAX_CLIPS: MAX_CLIPS,
|
||||||
transitions: true,
|
transitions: true,
|
||||||
|
@ -207,7 +212,8 @@ class ytpCommand extends Command {
|
||||||
effect_SpeedUp: !args.speedUp,
|
effect_SpeedUp: !args.speedUp,
|
||||||
effect_SlowDown: !args.slowDown,
|
effect_SlowDown: !args.slowDown,
|
||||||
effect_Dance: !args.dance,
|
effect_Dance: !args.dance,
|
||||||
effect_Squidward: !args.squidward
|
effect_Squidward: !args.squidward,
|
||||||
|
effect_How: !args.how
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue