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

29
install-autostart.bat Normal file
View File

@@ -0,0 +1,29 @@
@echo off
echo Installing Quantum Player Autostart...
echo.
REM Verificar si el archivo de autostart ya existe
if exist "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\quantum-autostart.bat" (
echo Autostart already installed. Updating...
del "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\quantum-autostart.bat"
)
REM Copiar el script de autostart al Startup folder
copy "%~dp0quantum-autostart.bat" "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\quantum-autostart.bat"
if %errorlevel% == 0 (
echo.
echo ========================================
echo Autostart installed successfully!
echo Quantum Player will start automatically when Windows boots.
echo ========================================
echo.
echo You can disable autostart from the Settings panel in the app.
) else (
echo.
echo ERROR: Failed to install autostart.
echo Please run this script as Administrator.
)
echo.
pause