Skip to content

This tool converts all .mkv files from the defined folders so they use less storage.

License

Notifications You must be signed in to change notification settings

Kirari04/convertarr

Repository files navigation

Convertarr

Alt text

Install using Docker

docker run -d \
  --name=convertarr \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Etc/UTC \
  -p 8080:8080 \
  -v /path/to/data:/app/database \
  -v /path/to/videofiles:/videofiles `#optional` \
  --restart unless-stopped \
  kirari04/convertarr:latest

or using docker-compose

---
services:
  convertarr:
    image: kirari04/convertarr:latest
    container_name: convertarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /path/to/data:/app/database
      - /path/to/videofiles:/videofiles #optional
    ports:
      - 8080:8080
    restart: unless-stopped

Developement

Server Application

go run main.go serve

Watch Templ

templ generate --watch

Build

docker build --platform linux/amd64 -t kirari04/convertarr:latest --push .

About

This tool converts all .mkv files from the defined folders so they use less storage.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published