Vendored Augani/openreel-video (MIT) into services/editor and wired it to the MAM. Editor runs as its own container on port 47435. Library assets pull in via ?asset=<uuid>; render exports route back via POST /api/v1/upload/simple. Sidebar Editor link on every page; Edit button on every preview modal. See services/editor/INTEGRATION.md for the patch map.
17 lines
363 B
YAML
17 lines
363 B
YAML
services:
|
|
transcribe:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
restart: always
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities: [gpu]
|
|
environment:
|
|
- WHISPER_MODEL=large-v3-turbo
|
|
- WHISPER_DEVICE=cuda
|
|
- WHISPER_COMPUTE_TYPE=float16
|