Metadata-Version: 2.4
Name: smartvideo
Version: 0.1.4
Summary: 🎬 Smart Video Player — FastAPI backend + Streamlit UI + HTML5 player
Author-email: Tamer <you@example.com>
License: MIT
Project-URL: Homepage, https://github.com/TamerOnLine/smartvideo
Project-URL: Issues, https://github.com/TamerOnLine/smartvideo/issues
Keywords: video,fastapi,streamlit,ffmpeg,media,player
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.115
Requires-Dist: uvicorn[standard]>=0.30
Requires-Dist: pydantic>=2.8
Requires-Dist: python-multipart>=0.0.9
Requires-Dist: starlette>=0.40
Requires-Dist: aiofiles>=24.1
Requires-Dist: requests>=2.32
Requires-Dist: streamlit>=1.39
Requires-Dist: opencv-python-headless>=4.10
Requires-Dist: ffmpeg-python>=0.2.0
Requires-Dist: moviepy>=1.0.3
Requires-Dist: platformdirs>=4.3
Dynamic: license-file


## 🔧 Install FFmpeg (Windows / macOS / Linux)

SmartVideo requires **FFmpeg**.  
If it's not installed, use one of the following one-liners based on your OS:

### 🪟 Windows (PowerShell)
```powershell
winget install Gyan.FFmpeg
```
Alternative:
```powershell
choco install ffmpeg
```

### 🍎 macOS
```bash
brew install ffmpeg
```

### 🐧 Linux (Debian/Ubuntu)
```bash
sudo apt update && sudo apt install -y ffmpeg
```
Other distros:
```bash
sudo dnf install ffmpeg        # Fedora
sudo pacman -S ffmpeg          # Arch
```

### ✅ Verify installation
```bash
ffmpeg -version
ffprobe -version
```
