Diffusers
MuseTalk1.5 / server /stop.sh
Marcos
Add H.264 WebSocket streaming and React.js web interface
32bba92
Raw
History Blame Contribute Delete
1.12 kB
#!/bin/bash
#
# MuseTalk Server - Stop All Services
#
echo ""
echo "╔══════════════════════════════════════════════════════════════╗"
echo "β•‘ MUSETALK SERVER - STOPPING ALL SERVICES β•‘"
echo "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•"
echo ""
# Stop MuseTalk
if pgrep -f "main_fast" > /dev/null; then
pkill -f "main_fast"
echo "βœ“ MuseTalk stopped"
else
echo " MuseTalk was not running"
fi
# Stop Distil-Whisper
if pgrep -f "whisper_distil_server" > /dev/null; then
pkill -f "whisper_distil_server"
echo "βœ“ Distil-Whisper stopped"
else
echo " Distil-Whisper was not running"
fi
# Stop vLLM
if pgrep -f "vllm.entrypoints" > /dev/null; then
pkill -f "vllm.entrypoints"
echo "βœ“ vLLM stopped"
else
echo " vLLM was not running"
fi
echo ""
echo "All services stopped."
echo ""