update description

This commit is contained in:
C4illin 2024-05-25 00:59:28 +02:00
parent 8a32c2d31f
commit 64f25f934b
2 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,6 @@
# ConvertX # ConvertX
A self-hosted online file converter. Supports 708 different formats. A self-hosted online file converter. Supports 808 different formats.
## Features ## Features
- Convert files to different formats - Convert files to different formats
@ -15,7 +15,9 @@ A self-hosted online file converter. Supports 708 different formats.
| Sharp | Images (fast) | 7 | 6 | | Sharp | Images (fast) | 7 | 6 |
| Pandoc | Documents | 43 | 65 | | Pandoc | Documents | 43 | 65 |
| GraphicsMagick | Images | 166 | 133 | | GraphicsMagick | Images | 166 | 133 |
| FFmpeg | Video | 461 | 170 | | FFmpeg | Video | ~473 | ~280 |
<!-- many ffmpeg fileformats are duplicates -->
## Deployment ## Deployment

View file

@ -831,7 +831,7 @@ const app = new Elysia()
return Bun.file(filePath); return Bun.file(filePath);
}, },
) )
.get("/converters", async ({ params, jwt, redirect, cookie: { auth } }) => { .get("/converters", async ({ jwt, redirect, cookie: { auth } }) => {
if (!auth?.value) { if (!auth?.value) {
return redirect("/login"); return redirect("/login");
} }