Initial commit: Video player with HLS support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-02 01:52:03 -06:00
commit 1743d472d2
29 changed files with 14074 additions and 0 deletions

19
autostart.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Script de inicio automático para Quantum Player
CONFIG_FILE="/home/draganel/repos/videoPlayer/.autostart-config"
# Verificar si el autostart está habilitado
if [ -f "$CONFIG_FILE" ]; then
AUTOSTART_ENABLED=$(cat "$CONFIG_FILE")
if [ "$AUTOSTART_ENABLED" = "enabled" ]; then
cd /home/draganel/repos/videoPlayer
# Verificar si ya está corriendo
if ! pgrep -f "node .output/server/index.mjs" > /dev/null; then
echo "🚀 Iniciando Quantum Player automáticamente..."
./start.sh
fi
fi
fi