Compare commits
3 Commits
fce4d30f58
...
b48e6abb2b
Author | SHA1 | Date |
---|---|---|
|
b48e6abb2b | |
|
94b0b63b3b | |
|
6c4cf425be |
|
@ -24,3 +24,4 @@ models/GFPGANv1.4.pth
|
||||||
models/DMDNet.pth
|
models/DMDNet.pth
|
||||||
faceswap/
|
faceswap/
|
||||||
.vscode/
|
.vscode/
|
||||||
|
/ffmpeg-7.0.2-full_build
|
||||||
|
|
15
README.md
15
README.md
|
@ -392,9 +392,14 @@ This is an open-source project developed in our free time. Updates may be delaye
|
||||||
- and [all developers](https://github.com/hacksider/Deep-Live-Cam/graphs/contributors) behind libraries used in this project.
|
- and [all developers](https://github.com/hacksider/Deep-Live-Cam/graphs/contributors) behind libraries used in this project.
|
||||||
- Foot Note: [This is originally roop-cam, see the full history of the code here.](https://github.com/hacksider/roop-cam) Please be informed that the base author of the code is [s0md3v](https://github.com/s0md3v/roop)
|
- Foot Note: [This is originally roop-cam, see the full history of the code here.](https://github.com/hacksider/roop-cam) Please be informed that the base author of the code is [s0md3v](https://github.com/s0md3v/roop)
|
||||||
|
|
||||||
## Thanks to all the contributors
|
## Contributions
|
||||||
<a href="https://github.com/hacksider/Deep-Live-Cam/graphs/contributors" target="_blank">
|
|
||||||
<img src="https://contrib.rocks/image?repo=hacksider/Deep-Live-Cam" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||

|

|
||||||
|
## Star History
|
||||||
|
|
||||||
|
<a href="https://star-history.com/#hacksider/deep-live-cam&Date">
|
||||||
|
<picture>
|
||||||
|
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=hacksider/deep-live-cam&type=Date&theme=dark" />
|
||||||
|
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=hacksider/deep-live-cam&type=Date" />
|
||||||
|
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=hacksider/deep-live-cam&type=Date" />
|
||||||
|
</picture>
|
||||||
|
</a>
|
||||||
|
|
|
@ -561,12 +561,13 @@ def swap_faces_paths() -> None:
|
||||||
|
|
||||||
def select_target_path() -> None:
|
def select_target_path() -> None:
|
||||||
global RECENT_DIRECTORY_TARGET, img_ft, vid_ft
|
global RECENT_DIRECTORY_TARGET, img_ft, vid_ft
|
||||||
|
combined_types = ('Media',(img_ft[-1] + vid_ft[-1])
|
||||||
|
)
|
||||||
PREVIEW.withdraw()
|
PREVIEW.withdraw()
|
||||||
target_path = ctk.filedialog.askopenfilename(
|
target_path = ctk.filedialog.askopenfilename(
|
||||||
title="select an target image or video",
|
title="select an target image or video",
|
||||||
initialdir=RECENT_DIRECTORY_TARGET,
|
initialdir=RECENT_DIRECTORY_TARGET,
|
||||||
filetypes=[img_ft, vid_ft],
|
filetypes=[combined_types],
|
||||||
)
|
)
|
||||||
if is_image(target_path):
|
if is_image(target_path):
|
||||||
modules.globals.target_path = target_path
|
modules.globals.target_path = target_path
|
||||||
|
|
Loading…
Reference in New Issue