| Feature | Description |
|---|---|
| Real-Time Processing | Live face swap from webcam with low latency |
| GPU Accelerated | CUDA/DirectML support for maximum performance |
| Modern UI | Clean, dark-themed interface built with CustomTkinter |
| OBS Integration | Virtual camera output for streaming |
| Face Enhancement | Optional AI-powered face restoration |
| Multi-Face Support | Swap multiple faces in a single frame |
| Component | Minimum | Recommended |
|---|---|---|
| OS | Windows 10 | Windows 11 |
| Python | 3.10 | 3.11 |
| RAM | 8 GB | 16 GB |
| GPU | GTX 1060 (6GB) | RTX 3060+ |
| VRAM | 4 GB | 8 GB+ |
Note: CPU-only mode is available but significantly slower
git clone https://github.com/mayusi/seep.git
cd seep
pip install -r requirements.txtpython download_models.pyOr run the app - it will download models automatically on first launch.
python main.pypython main.pyLaunches the graphical interface with:
- Source face selection panel
- Live preview window
- Camera controls
- Recording options
python main.py --check # Check system requirements
python main.py --download # Download models
python main.py --debug # Enable debug loggingCreate a standalone .exe for distribution:
python build_exe.pyOutput will be in dist/Seep.exe
seep/
├── main.py # Application entry point
├── launcher.py # GUI launcher with splash screen
├── requirements.txt # Python dependencies
├── src/
│ ├── ui/ # User interface components
│ ├── core/ # Core processing pipeline
│ ├── face/ # Face detection & analysis
│ ├── capture/ # Camera capture
│ ├── processors/ # Image processors
│ └── utils/ # Utility functions
├── config/ # Configuration files
├── models/ # AI models (downloaded separately)
└── assets/ # Icons and resources
Models are downloaded automatically on first run. They include:
| Model | Purpose | Size |
|---|---|---|
inswapper_128.onnx |
Face swapping | ~530 MB |
det_10g.onnx |
Face detection | ~16 MB |
w600k_r50.onnx |
Face recognition | ~174 MB |
- Use a dedicated GPU for best performance
- Close other GPU-intensive applications
- Lower resolution for higher FPS
- Enable face caching for static source images
MIT License - See LICENSE for details.
Built with passion by Naxte