This commit is contained in:
Auric Vente 2024-02-28 05:31:35 -06:00
parent f79cd76267
commit 5677930c1b
1 changed files with 3 additions and 4 deletions

View File

@ -353,17 +353,16 @@ async def gif_user(room_id):
command = gifmaker_command([ command = gifmaker_command([
"--input", get_path("nerd.jpg"), "--input", get_path("nerd.jpg"),
"--words", f"{user} is ; {what}", "--words", f"{user} is [x2] ; {what} [x2]",
"--filter", "anyhue2", "--filter", "anyhue2",
"--bottom", 20, "--bottom", 20,
"--fontcolor", "light2", "--fontcolor", "light",
"--bgcolor", "darkfont2", "--bgcolor", "darkfont",
"--outline", "font", "--outline", "font",
"--deepfry", "--deepfry",
"--font", "nova", "--font", "nova",
"--fontsize", 45, "--fontsize", 45,
"--opacity", 0.8, "--opacity", 0.8,
"--delay", 1250,
]) ])
await run_gifmaker(command, room_id) await run_gifmaker(command, room_id)