Compare commits
3 Commits
e8759d284f
...
c09eb70540
Author | SHA1 | Date |
---|---|---|
|
c09eb70540 | |
|
bdd7c593e1 | |
|
31f437ff79 |
70
README.md
70
README.md
|
@ -1,10 +1,13 @@
|
|||
<h1 align="center">Deep Live Cam</h1>
|
||||
|
||||

|
||||

|
||||
<p align="center">
|
||||
Real-time face swap and video deepfake with a single click and only a single image.
|
||||
</p>
|
||||
|
||||
## Deep Live Cam
|
||||
|
||||
Real-time face swap and video deepfake with a single click and only a single image.
|
||||
<p align="center">
|
||||
<img src="demo.gif" alt="Demo GIF">
|
||||
<img src="avgpcperformancedemo.gif" alt="Performance Demo GIF">
|
||||
</p>
|
||||
|
||||
## Disclaimer
|
||||
|
||||
|
@ -15,34 +18,6 @@ We are aware of the potential for unethical applications and are committed to pr
|
|||
Users are expected to use this software responsibly and legally. If using a real person's face, obtain their consent and clearly label any output as a deepfake when sharing online. We are not responsible for end-user actions.
|
||||
|
||||
|
||||
## Features
|
||||
|
||||
### Resizable Preview Window
|
||||
|
||||
Dynamically improve performance using the `--live-resizable` parameter.
|
||||
|
||||

|
||||
|
||||
### Face Mapping
|
||||
|
||||
Track and change faces on the fly.
|
||||
|
||||

|
||||
|
||||
**Source Video:**
|
||||
|
||||

|
||||
|
||||
**Enable Face Mapping:**
|
||||
|
||||

|
||||
|
||||
**Map the Faces:**
|
||||
|
||||

|
||||
|
||||
**See the Magic!**
|
||||
|
||||
## Quick Start (Windows / Nvidia)
|
||||
|
||||
[](https://hacksider.gumroad.com/l/vccdmm)
|
||||
|
@ -186,6 +161,35 @@ python run.py --execution-provider openvino
|
|||
|
||||

|
||||
|
||||
## Features
|
||||
|
||||
### Resizable Preview Window
|
||||
|
||||
Dynamically improve performance using the `--live-resizable` parameter.
|
||||
|
||||

|
||||
|
||||
### Face Mapping
|
||||
|
||||
Track and change faces on the fly.
|
||||
|
||||

|
||||
|
||||
**Source Video:**
|
||||
|
||||

|
||||
|
||||
**Enable Face Mapping:**
|
||||
|
||||

|
||||
|
||||
**Map the Faces:**
|
||||
|
||||

|
||||
|
||||
**See the Magic!**
|
||||
|
||||
|
||||
## Command Line Arguments
|
||||
|
||||
```
|
||||
|
|
|
@ -9,7 +9,7 @@ tk==0.1.0
|
|||
customtkinter==5.2.2
|
||||
pillow==9.5.0
|
||||
torch==2.0.1+cu118; sys_platform != 'darwin'
|
||||
torch==2.0.1; sys_platform == 'darwin'
|
||||
torch==2.2.0; sys_platform == 'darwin'
|
||||
torchvision==0.15.2+cu118; sys_platform != 'darwin'
|
||||
torchvision==0.15.2; sys_platform == 'darwin'
|
||||
onnxruntime-silicon==1.16.3; sys_platform == 'darwin' and platform_machine == 'arm64'
|
||||
|
|
Loading…
Reference in New Issue