added Face Animator module
BIN
build/animatables/Biden.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
build/animatables/Elon_Musk.png
Normal file
After Width: | Height: | Size: 244 KiB |
BIN
build/animatables/Elon_Musk_blue_bg.png
Normal file
After Width: | Height: | Size: 242 KiB |
BIN
build/animatables/Kim Chen Yin.png
Normal file
After Width: | Height: | Size: 596 KiB |
BIN
build/animatables/Lukashenko.png
Normal file
After Width: | Height: | Size: 288 KiB |
BIN
build/animatables/Putin.png
Normal file
After Width: | Height: | Size: 230 KiB |
BIN
build/animatables/Putin2.png
Normal file
After Width: | Height: | Size: 461 KiB |
|
@ -9,7 +9,7 @@ RUN ln -s /usr/bin/python3 /usr/bin/python
|
|||
RUN git clone https://github.com/iperov/DeepFaceLive.git
|
||||
|
||||
RUN python -m pip install --upgrade pip
|
||||
RUN python -m pip install onnxruntime-gpu==1.11.1 numpy==1.21.5 h5py numexpr opencv-python==4.5.5.64 opencv-contrib-python==4.5.5.64 pyqt6==6.3.0 onnx==1.11.0 torch==1.8.1 torchvision==0.9.1
|
||||
RUN python -m pip install onnxruntime-gpu==1.11.1 numpy==1.21.6 h5py numexpr opencv-python==4.5.5.64 opencv-contrib-python==4.5.5.64 pyqt6==6.3.0 onnx==1.11.0 torch==1.8.1 torchvision==0.9.1
|
||||
|
||||
WORKDIR /app/DeepFaceLive
|
||||
COPY example.sh example.sh
|
||||
|
|
BIN
build/samples/Obama_speaking.mp4
Normal file
|
@ -470,8 +470,8 @@ def build_deepfacelive_windows(release_dir, cache_dir, python_ver='3.7.9', backe
|
|||
clear_release_path=True)
|
||||
|
||||
# PIP INSTALLATIONS
|
||||
|
||||
builder.install_pip_package('numpy==1.21.5')
|
||||
|
||||
builder.install_pip_package('numpy==1.21.6')
|
||||
builder.install_pip_package('h5py')
|
||||
builder.install_pip_package('numexpr')
|
||||
builder.install_pip_package('opencv-python==4.5.5.64')
|
||||
|
@ -522,6 +522,9 @@ def build_deepfacelive_windows(release_dir, cache_dir, python_ver='3.7.9', backe
|
|||
print('Copying samples.')
|
||||
shutil.copytree( str(Path(__file__).parent.parent / 'samples'), str(userdata_path / 'samples') )
|
||||
|
||||
print('Copying animatables.')
|
||||
shutil.copytree( str(Path(__file__).parent.parent / 'animatables'), str(userdata_path / 'animatables') )
|
||||
|
||||
if backend == 'cuda':
|
||||
builder.create_run_python_script('DeepFaceLive.bat', 'DeepFaceLive\\main.py', 'run DeepFaceLive --userdata-dir="%~dp0userdata"')
|
||||
elif backend == 'directml':
|
||||
|
|