Add installation scripts and update documentation for Phase 3 features

This commit is contained in:
Your Name
2025-03-01 20:37:52 -05:00
parent a653ac7f28
commit 7ea098bd05
16 changed files with 3023 additions and 43 deletions

25
install.bat Normal file
View File

@ -0,0 +1,25 @@
@echo off
echo ===================================================
echo OBS Recording Transcriber - Windows Installation
echo ===================================================
echo.
:: Check for Python
python --version > nul 2>&1
if %errorlevel% neq 0 (
echo Python not found! Please install Python 3.8 or higher.
echo Download from: https://www.python.org/downloads/
echo Make sure to check "Add Python to PATH" during installation.
pause
exit /b 1
)
:: Run the installation script
echo Running installation script...
python install.py
echo.
echo If the installation was successful, you can run the application with:
echo streamlit run app.py
echo.
pause