media-transcriber/systemd/whisper-server.service
Jarian 0da74d39a0 init: media-transcriber pipeline
- whisper.cpp base.en transcription on RTX 5060 Ti (GPU 1)
- 25,439 videos indexed from /mnt/mediaserver/
- pipeline: ffmpeg extract -> whisper-server infer -> save SRT
- thermal cycle: 45min work / 15min rest
- fixes: curl quotes for spaces, --convert + WorkingDirectory=/tmp
2026-07-07 04:47:18 +00:00

19 lines
389 B
Desktop File

[Unit]
Description=Whisper.cpp Transcription Server
After=network.target
[Service]
Type=simple
User=jarian
ExecStart=/home/jarian/whisper.cpp/build/bin/whisper-server \
-m /home/jarian/whisper.cpp/models/ggml-base.en.bin \
--host 127.0.0.1 \
--port 8888 \
--convert
Environment=CUDA_VISIBLE_DEVICES=1
Restart=on-failure
RestartSec=10
[Install]
WantedBy=multi-user.target