Sign inSign up

c4illin/convertx

By c4illin

•Updated 1 day ago

💾 Self-hosted online file converter. Supports 1000+ formats ⚙️

Image
Developer tools
14

100K+

c4illin/convertx repository overview

ConvertX

⁠ConvertX

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

C4illin%2FConvertX | Trendshift

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

ConverterUse caseConverts fromConverts to
Inkscape⁠Vector images717
libjxl⁠JPEG XL1111
resvg⁠SVG11
Vips⁠Images4523
libheif⁠HEIF24
XeLaTeX⁠LaTeX11
Calibre⁠E-books2619
LibreOffice⁠Documents4122
Dasel⁠Data Files54
Pandoc⁠Documents4365
msgconvert⁠Outlook11
VCF to CSVContacts11
dvisvgm⁠Vector images42
ImageMagick⁠Images245183
GraphicsMagick⁠Images167130
Assimp⁠3D Assets7723
FFmpeg⁠Video~472~199
Potrace⁠Raster to vector411
VTracer⁠Raster to vector81
Markitdown⁠Documents61
pdftops⁠Documents12

Any missing converter? Open an issue or pull request!

⁠Deployment

Warning

If you can't login, make sure you are accessing the service over localhost or https otherwise set HTTP_ALLOWED=true
# docker-compose.yml
services:
  convertx:
    image: ghcr.io/c4illin/convertx
    container_name: convertx
    restart: unless-stopped
    ports:
      - "3000:3000"
    environment:
      - PUID=1000 # user id for file permissions (should match your host user id)
      - JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset
      # - HTTP_ALLOWED=true # uncomment this if accessing it over a non-https connection
    volumes:
      - ./data:/app/data

or

docker run -p 3000:3000 -e PUID=1000 -e PGID=1000 -v ./data:/app/data ghcr.io/c4illin/convertx

Ensure PUID and PGID match your host user (id -u and id -g) to avoid permission issues on the mapped ./data volume. If you get unable to open database file, verify the directory permissions or run chown -R $USER:$USER path on the path you choose.

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.

⁠Environment variables

All are optional, JWT_SECRET is recommended to be set.

NameDefaultDescription
JWT_SECRETwhen unset it will use the value from randomUUID()A long and secret string used to sign the JSON Web Token
PUID0 (root)User ID to run the application process as (it first uses root to chown the files)
PGIDPUID if unset, root if both unsetGroup ID to run the application process as
UMASK002 (when PUID is set)File creation mask for processes and created files
ACCOUNT_REGISTRATIONfalseAllow users to register accounts
HTTP_ALLOWEDfalseAllow HTTP connections, only set this to true locally
ALLOW_UNAUTHENTICATEDfalseAllow unauthenticated users to use the service, only set this to true locally
AUTO_DELETE_EVERY_N_HOURS24Checks every n hours for files older then n hours and deletes them, set to 0 to disable
WEBROOTThe address to the root path setting this to "/convert" will serve the website on "example.com/convert/"
BRANDINGConvertXCustom string that allows you to change the display name of the website in the header (max 26 characters)
FFMPEG_ARGSArguments to pass to the input file of ffmpeg, e.g. -hwaccel vaapi. See https://github.com/C4illin/ConvertX/issues/190⁠ for more info about hw-acceleration.
FFMPEG_OUTPUT_ARGSArguments to pass to the output of ffmpeg, e.g. -preset veryfast
HIDE_HISTORYfalseHide the history page
LANGUAGEenLanguage to format date strings in, specified as a BCP 47 language tag⁠
UNAUTHENTICATED_USER_SHARINGfalseShares conversion history between all unauthenticated users
MAX_CONVERT_PROCESS0Maximum number of concurrent conversion processes allowed. Set to 0 for unlimited.
PORT3000Application listen port
⁠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⁠.

ImageWhat it is
image: ghcr.io/c4illin/convertxThe latest release on ghcr
image: ghcr.io/c4illin/convertx:mainThe latest commit on ghcr
image: c4illin/convertxThe latest release on docker hub
image: c4illin/convertx:mainThe latest commit on docker hub

Release image size Dev image size

⁠Tutorial

Note

These are written by other people, and may be outdated, incorrect or wrong.

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

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

Tutorial in polish: https://www.kreatywnyprogramista.pl/convertx-lokalny-konwerter-plikow⁠

⁠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 open issues for the list of todos. The ones tagged with "converter request" are quite easy. Help with docs and cleaning up in issues are also very welcome!

Use conventional commits⁠ for commit messages.

⁠Contributors

Image with all contributors ⁠

Alt

⁠Star History

Star History Chart ⁠

Tag summary

Content type

Image

Digest

sha256:b515b04bf…

Size

1.4 GB

Last updated

3 months ago

docker pull c4illin/convertx