added Sylvester Stallone

This commit is contained in:
iperov 2021-10-20 22:22:12 +04:00
commit 4c8205ba07
8 changed files with 15 additions and 0 deletions

View file

@ -28,11 +28,18 @@ Margot Robbie
<a href="doc/celebs/Margot_Robbie/examples.md">examples</a>
</td><td align="center">
Sylvester Stallone
<img src="doc/celebs/Sylvester_Stallone/Sylvester_Stallone.jpg" width=128></img>
<a href="doc/celebs/Sylvester_Stallone/examples.md">examples</a>
</td><td align="center">
Tom Cruise
<img src="doc/celebs/Tom_Cruise/Tom_Cruise.jpg" width=128></img>
<a href="doc/celebs/Tom_Cruise/examples.md">examples</a>
</td></tr>
</table>

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,7 @@
https://user-images.githubusercontent.com/8076202/138148211-40ba263e-75de-47a1-8286-2289aad206da.mp4
https://user-images.githubusercontent.com/8076202/138148264-71d2354e-837f-4769-82ab-9a7bccafa78b.mp4
https://user-images.githubusercontent.com/8076202/138148298-5ebdc2df-ddcc-4eb2-9d5f-4016889a9523.mp4
https://user-images.githubusercontent.com/8076202/138148325-4101b799-050b-4da1-9ce4-c65936acdebe.mp4

View file

@ -35,6 +35,7 @@ def get_available_models_info(models_path : Path) -> List[DFMModelInfo]:
# predefined list of celebs with urls
dfm_models = [
DFMModelInfo(name='Margot Robbie', model_path=models_path / f'Margot_Robbie.dfm', url=rf'https://github.com/iperov/DeepFaceLive/releases/download/MARGOT_ROBBIE/Margot_Robbie.dfm'),
DFMModelInfo(name='Sylvester Stallone', model_path=models_path / f'Sylvester_Stallone.dfm', url=rf'https://github.com/iperov/DeepFaceLive/releases/download/SYLVESTER_STALLONE/Sylvester_Stallone.dfm'),
DFMModelInfo(name='Tom Cruise', model_path=models_path / f'Tom_Cruise.dfm', url=rf'https://github.com/iperov/DeepFaceLive/releases/download/TOM_CRUISE/Tom_Cruise.dfm'),
]