This commit is contained in:
Auric Vente 2024-02-28 05:05:00 -06:00
parent 343c644de3
commit f79cd76267
1 changed files with 2 additions and 1 deletions

View File

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