diff --git a/src/status.ts b/src/status.ts
index 9867459..479a2d4 100644
--- a/src/status.ts
+++ b/src/status.ts
@@ -112,14 +112,23 @@ export const handleStatus = async (
/* Multiplying by 0.5 is an ugly hack to fix Discord
disliking videos that are too large lol */
+ let sizeMultiplier = 1;
+
+ if (video.width > 1920 || video.height > 1920) {
+ sizeMultiplier = 0.5;
+ }
+ if (video.width < 400 && video.height < 400) {
+ sizeMultiplier = 2;
+ }
+
headers.push(
``,
- ``,
- ``,
+ ``,
+ ``,
``,
``,
- ``,
- ``,
+ ``,
+ ``,
``,
``
);