暂无描述

C4illin bca82c6edc wip 4 月之前
.github 43497ad8d1 ci: split docker hub description to separate workflow 8 月之前
.vscode 27d4da8941 chore: add TypeScript settings 1 年之前
images 88173891ba fix: wrong layout on search with few options 10 月之前
public 4c05fd72bb fix: wait for both upload and selection 8 月之前
src 62f44fb052 chore: print libheif version 5 月之前
.dockerignore afe5c50d66 chore: fix tailwind v4 docker 5 月之前
.gitignore 3da6734e10 dcraw almost working 5 月之前
CHANGELOG.md 279ca72c64 chore(main): release 0.11.1 5 月之前
Dockerfile bca82c6edc wip 4 月之前
LICENSE 16c1460620 Create LICENSE 1 年之前
README.md decfea5dc9 fix: add libheif 5 月之前
biome.json 22f823c535 feat: ui remake with tailwind 10 月之前
bun.lock b8fc9383ca chore: update deps 5 月之前
compose.yaml f537c81db7 fix: add FFMPEG_ARGS env variable 7 月之前
eslint.config.ts 480ba77ebe chore: fix eslint config 5 月之前
package.json 279ca72c64 chore(main): release 0.11.1 5 月之前
postcss.config.js e595014fcd refactor: update Tailwind to v4 5 月之前
prettier.config.js fa5446c446 chore: fix eslint config 10 月之前
renovate.json d2cd6706c9 chore: update @elysiajs/static 9 月之前
reset.d.ts a68046ecd6 jsx working 1 年之前
tsconfig.json e8ed10dde8 chore(deps): update @elysiajs/html to version 1.1.1 9 月之前

README.md

ConvertX

ConvertX

Docker ghcr.io Pulls Docker Pulls GitHub Release GitHub commits since latest release GitHub repo size Docker container size

A self-hosted online file converter. Supports over a thousand different formats. Written with TypeScript, Bun and Elysia.

Features

  • Convert files to different formats
  • Process multiple files at once
  • Password protection
  • Multiple accounts

Converters supported

Converter Use case Converts from Converts to
libjxl JPEG XL 11 11
resvg SVG 1 1
libheif HEIF 7 6
Vips Images 45 23
XeLaTeX LaTeX 1 1
Calibre E-books 26 19
Pandoc Documents 43 65
GraphicsMagick Images 167 130
Inkscape Vector images 7 17
Assimp 3D Assets 77 23
FFmpeg Video ~472 ~199

Any missing converter? Open an issue or pull request!

Deployment

# docker-compose.yml
services:
  convertx: 
    image: ghcr.io/c4illin/convertx
    container_name: convertx
    restart: unless-stopped
    ports:
      - "3000:3000"
    environment:
      - JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset
    volumes:
      - ./data:/app/data

or

docker run -p 3000:3000 -v ./data:/app/data ghcr.io/c4illin/convertx

Then visit http://localhost:3000 in your browser and create your account. Don't leave it unconfigured and open, as anyone can register the first account.

If you get unable to open database file run chown -R $USER:$USER path on the path you choose.

Environment variables

All are optional, JWT_SECRET is recommended to be set.

Name Default Description
JWT_SECRET when unset it will use the value from randomUUID() A long and secret string used to sign the JSON Web Token
ACCOUNT_REGISTRATION false Allow users to register accounts
HTTP_ALLOWED false Allow HTTP connections, only set this to true locally
ALLOW_UNAUTHENTICATED false Allow unauthenticated users to use the service, only set this to true locally
AUTO_DELETE_EVERY_N_HOURS 24 Checks every n hours for files older then n hours and deletes them, set to 0 to disable
WEBROOT The address to the root path setting this to "/convert" will serve the website on "example.com/convert/"
FFMPEG_ARGS Arguments to pass to ffmpeg, e.g. -preset veryfast

[!WARNING] If you can't login, make sure you are accessing the service over https or set HTTP_ALLOWED=true

Docker images

There is a :latest tag that is updated with every release and a :main tag that is updated with every push to the main branch. :latest is recommended for normal use.

The image is available on GitHub Container Registry and Docker Hub.

Image What it is
image: ghcr.io/c4illin/convertx The latest release on ghcr
image: ghcr.io/c4illin/convertx:main The latest commit on ghcr
image: c4illin/convertx The latest release on docker hub
image: c4illin/convertx:main The latest commit on docker hub

Tutorial

Tutorial in french: https://belginux.com/installer-convertx-avec-docker/

Tutorial in chinese: https://xzllll.com/24092901/

Screenshots

ConvertX Preview

Development

  1. Install Bun and Git
  2. Clone the repository
  3. bun install
  4. bun run dev

Pull requests are welcome! See below and open issues for the list of todos.

Todo

  • Add messages for errors in converters
  • Add searchable list of formats
  • Add options for converters
  • Divide index.tsx into smaller components
  • Add tests
  • Make the upload button nicer and more easy to drop files on. Support copy paste as well if possible.
  • Make errors logs visible from the web ui
  • Add more converters:

Contributors

Image with all contributors

Star History

Star History Chart