ponzischeme89 0ed2d1e311 readme tweaks
2026-01-18 01:45:04 +13:00
2026-01-17 22:51:42 +13:00
2026-01-18 00:17:34 +13:00
2026-01-17 21:49:22 +13:00
2026-01-17 21:49:22 +13:00
2026-01-18 00:48:29 +13:00
2026-01-17 22:54:20 +13:00
2026-01-18 01:45:04 +13:00
2026-01-17 21:49:22 +13:00

Your subtitles deserve metadata. Sublogue adds it.

Sublogue is a lightweight open-source tool for enriching SRT files. Pull metadata from OMDb, TMDB, or TVMaze and automatically append plot summaries, runtimes, directors, and cast details to the start or end of your subtitles.

Why? If the cast and IMDb/RT rating appear in the first minute, movie night involves fewer questions and more watching!

Core Features

  • Insert plot summaries into existing .srt files without shifting timings
  • Fetch metadata from OMDb, TMDb, and TVMaze
  • Add runtime, director, cast, and ratings to subtitle headers
  • Preserve original dialogue and timing with safe insertion logic
  • Clean, fast web UI for scanning and batch processing built in Svelte

Screenshots

Getting started

To get started installing Sublogue, expand on your posion below. Personally, I recommend Komodo. It's great.

Docker Compose Create `data/` and `media/` folders next to the compose file, then run:
version: "3.9"
services:
  sublogue:
    image: ghcr.io/ponzischeme89/sublogue:latest
    container_name: sublogue
    restart: unless-stopped
    environment:
      - TZ=Pacific/Auckland
    volumes:
      - ./data:/config
      - ./media:/media
    ports:
      - "5000:5000"

Start the stack:

docker compose up -d

Open http://localhost:5000.

🧡 Unraid

Use the included template at unraid-sublogue.xml.

  • /mnt/user/appdata/sublogue -> /config
  • /mnt/user/appdata/sublogue/media -> /media

Start the container and open http://<UNRAID-IP>:5000.

🦎 Komodo

Create a new stack and paste a Komodo template like this:

version: "3.9"
services:
  sublogue:
    image: ghcr.io/ponzischeme89/sublogue:latest
    container_name: sublogue

    ports:
      - "5000:5000"

    environment:
      - TZ=Etc/UTC
      - PUID=1000
      - PGID=1000

    volumes:
      - /volume1/Docker/sublogue/data:/config
      - /volume1/Media:/media

    restart: unless-stopped

    networks:
      - npm_network

networks:
  npm_network:
    external: true

Support

  • Help spread the word about Sublogue by telling your friends about this repo
  • Give the repo a star (This really helps)
S
Description
No description provided
Readme 2.9 MiB
Languages
Svelte 48.2%
Python 46.7%
JavaScript 4.1%
CSS 0.5%
Dockerfile 0.4%