marcosremar2
Initial commit: dumont-talker speech-to-speech avatar
71e110b
Raw
History Blame Contribute Delete
578 Bytes
#!/bin/bash
#
# dumont-talker - Stop All Services
#
echo "Stopping dumont-talker services..."
# Stop MuseTalk
if [ -f /tmp/dumont-talker.pid ]; then
kill $(cat /tmp/dumont-talker.pid) 2>/dev/null && echo "✓ MuseTalk stopped"
rm -f /tmp/dumont-talker.pid
fi
# Stop vLLM
if [ -f /tmp/vllm.pid ]; then
kill $(cat /tmp/vllm.pid) 2>/dev/null && echo "✓ vLLM stopped"
rm -f /tmp/vllm.pid
fi
# Stop Whisper
if [ -f /tmp/whisper.pid ]; then
kill $(cat /tmp/whisper.pid) 2>/dev/null && echo "✓ Whisper stopped"
rm -f /tmp/whisper.pid
fi
echo "Done."