Face not swap please help me #1412
Replies: 1 comment
-
Face swap not working – common fixesIf Deep-Live-Cam opens correctly but the face does not swap, it is usually caused by one of the issues below. Please check each step carefully. 1. Verify that faces are actually detectedDeep-Live-Cam will not swap faces unless both the source and the target faces are detected.
Tips for reliable detection:
If no face is detected, the output will look unchanged. 2. Make sure the required models are in the correct folderThe following models must exist inside the
Please check:
Deep-Live-Cam/models/ 3. Fix black face / no swap (onnxruntime issue)A common reason for the face not appearing (or appearing as a black block) is an incompatible Try reinstalling it: pip uninstall onnxruntime onnxruntime-gpu -y
pip install onnxruntime-gpu==1.16.3
Then run the app again: python run.py
If using CUDA: python run.py --execution-provider cuda
4. Always use a clean virtual environmentDependency conflicts can prevent the face swap from working. Recommended setup: python -m venv venv
venv\Scripts\activate # Windows
# or
source venv/bin/activate # macOS / Linux
pip install -r requirements.txt
Run the app only while the venv is activated. 5. Check terminal output for errorsAfter clicking Start or Live, check the console. Common messages:
These usually indicate:
6. If the issue persistsPlease share:
This will help identify the exact cause. Hope this helps 👍 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Beta Was this translation helpful? Give feedback.
All reactions