- 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
19 lines
389 B
Desktop File
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
|