| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A native macOS application for real-time face swapping using deep learning technology.
# Create virtual environment
python -m venv venv
source venv/bin/activate
# Install dependencies
pip install -r requirements.txtRequired packages (see requirements.txt for specific versions):
pip install pyinstaller create-dmgpyinstaller --windowed --name "Face Swap" --icon assets/icon.icns main.pycreate-dmg \
--volname "Face Swap" \
--window-pos 200 120 \
--window-size 800 400 \
--icon-size 100 \
--icon "Face Swap.app" 200 190 \
--hide-extension "Face Swap.app" \
--app-drop-link 600 185 \
"Face Swap.dmg" \
"dist/Face Swap.app"mac-face-swap/ ├── src/ │ ├── main.py # Application entry point │ ├── face_swap/ # Core face swapping logic │ ├── gui/ # PyQt6 GUI components │ └── utils/ # Helper functions ├── assets/ # Icons and resources ├── tests/ # Unit and integration tests └── scripts/ # Build and packaging scripts
pytest tests/Please report issues on the GitHub Issues page with:
This project is licensed under the MIT License - see the LICENSE file for details.
| Back | FazBrowse Home | New Git URL |