From 64f25f934b3e6f348a06fef99e762a36168c0e81 Mon Sep 17 00:00:00 2001 From: C4illin Date: Sat, 25 May 2024 00:59:28 +0200 Subject: [PATCH] update description --- README.md | 6 ++++-- src/index.tsx | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7737db5..0d26f49 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ConvertX -A self-hosted online file converter. Supports 708 different formats. +A self-hosted online file converter. Supports 808 different formats. ## Features - Convert files to different formats @@ -15,7 +15,9 @@ A self-hosted online file converter. Supports 708 different formats. | Sharp | Images (fast) | 7 | 6 | | Pandoc | Documents | 43 | 65 | | GraphicsMagick | Images | 166 | 133 | -| FFmpeg | Video | 461 | 170 | +| FFmpeg | Video | ~473 | ~280 | + + ## Deployment diff --git a/src/index.tsx b/src/index.tsx index 37ed6cf..4702c59 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -831,7 +831,7 @@ const app = new Elysia() return Bun.file(filePath); }, ) - .get("/converters", async ({ params, jwt, redirect, cookie: { auth } }) => { + .get("/converters", async ({ jwt, redirect, cookie: { auth } }) => { if (!auth?.value) { return redirect("/login"); }