Run a private file conversion service in Docker to avoid uploading sensitive documents to public converter websites
Convert batches of images, PDFs, videos, or 3D files through a drag-and-drop web UI supporting 1000+ formats
Set up ConvertX for a team with auto-delete of converted files after a configurable number of hours
Pass custom FFmpeg arguments for video conversion jobs through environment variable configuration
Requires Docker, the first user must register immediately after startup or any visitor can claim the admin account.
ConvertX is a self-hosted online file converter that you run yourself instead of relying on a third-party website. The point is that you keep your files on your own machine while still getting the convenience of a drag-and-drop converter web page. According to the project it can handle over a thousand different file formats and can also process several files at once. Under the hood, ConvertX is not one giant converter but a wrapper around a long list of well-known open source tools. For images it uses ImageMagick, GraphicsMagick, Vips, libheif, libjxl, resvg and Inkscape, for documents it uses LibreOffice, Pandoc, Calibre and Markitdown, for video it uses FFmpeg, for 3D assets it uses Assimp. The web service hands your file to the right tool and gives you back the converted result through one consistent interface. The intended way to run it is through Docker. You start a single container, mount a data folder so converted files persist, set a secret used to sign the login token, and then open it in your browser to create the first account. The README warns you to create that first account immediately because anyone who hits an unconfigured instance can register it. Extra environment variables let you enable open registration, allow plain HTTP for local use, auto-delete files after a set number of hours, or pass custom arguments to FFmpeg. You'd reach for ConvertX when you want a private, always-available conversion service for your team or yourself without sending sensitive documents through a public converter site. The project is written in TypeScript and built on the Bun runtime with the Elysia web framework, and is distributed as a Docker image.
← c4illin on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.