Skip to content

Commit b9790d8

Browse files
authored
Refactoring animation. (#1301)
Signed-off-by: Yao, Qing <qing.yao@intel.com> Signed-off-by: chensuyue <suyue.chen@intel.com>
1 parent b27b48c commit b9790d8

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

AvatarChatbot/docker_compose/intel/cpu/xeon/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ docker build -t opea/tts:latest --build-arg https_proxy=$https_proxy --build-arg
3737
### 5. Build Animation Image
3838

3939
```bash
40-
docker build -t opea/wav2lip:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/animation/wav2lip/dependency/Dockerfile .
40+
docker build -t opea/wav2lip:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/animation/src/integration/dependency/Dockerfile .
4141

42-
docker build -t opea/animation:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/animation/wav2lip/Dockerfile .
42+
docker build -t opea/animation:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/animation/src/Dockerfile .
4343
```
4444

4545
### 6. Build MegaService Docker Image

AvatarChatbot/docker_compose/intel/hpu/gaudi/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ docker build -t opea/tts:latest --build-arg https_proxy=$https_proxy --build-arg
3737
### 5. Build Animation Image
3838

3939
```bash
40-
docker build -t opea/wav2lip-gaudi:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/animation/wav2lip/dependency/Dockerfile.intel_hpu .
40+
docker build -t opea/wav2lip-gaudi:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/animation/src/integration/dependency/Dockerfile.intel_hpu .
4141

42-
docker build -t opea/animation:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/animation/wav2lip/Dockerfile .
42+
docker build -t opea/animation:latest --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f comps/animation/src/Dockerfile .
4343
```
4444

4545
### 6. Build MegaService Docker Image

AvatarChatbot/docker_image_build/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,18 +56,18 @@ services:
5656
wav2lip-gaudi:
5757
build:
5858
context: GenAIComps
59-
dockerfile: comps/animation/wav2lip/dependency/Dockerfile.intel_hpu
59+
dockerfile: comps/animation/src/integration/dependency/Dockerfile.intel_hpu
6060
extends: avatarchatbot
6161
image: ${REGISTRY:-opea}/wav2lip-gaudi:${TAG:-latest}
6262
wav2lip:
6363
build:
6464
context: GenAIComps
65-
dockerfile: comps/animation/wav2lip/dependency/Dockerfile
65+
dockerfile: comps/animation/src/integration/dependency/Dockerfile
6666
extends: avatarchatbot
6767
image: ${REGISTRY:-opea}/wav2lip:${TAG:-latest}
6868
animation:
6969
build:
7070
context: GenAIComps
71-
dockerfile: comps/animation/wav2lip/Dockerfile
71+
dockerfile: comps/animation/src/Dockerfile
7272
extends: avatarchatbot
7373
image: ${REGISTRY:-opea}/animation:${TAG:-latest}

AvatarChatbot/tests/test_compose_on_gaudi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function start_services() {
6464
export WAV2LIP_PORT=7860
6565
export INFERENCE_MODE='wav2lip+gfpgan'
6666
export CHECKPOINT_PATH='/usr/local/lib/python3.10/dist-packages/Wav2Lip/checkpoints/wav2lip_gan.pth'
67-
export FACE="assets/img/avatar1.jpg"
67+
export FACE="/home/user/comps/animation/src/assets/img/avatar1.jpg"
6868
# export AUDIO='assets/audio/eg3_ref.wav' # audio file path is optional, will use base64str in the post request as input if is 'None'
6969
export AUDIO='None'
7070
export FACESIZE=96

AvatarChatbot/tests/test_compose_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function start_services() {
6464
export WAV2LIP_PORT=7860
6565
export INFERENCE_MODE='wav2lip+gfpgan'
6666
export CHECKPOINT_PATH='/usr/local/lib/python3.11/site-packages/Wav2Lip/checkpoints/wav2lip_gan.pth'
67-
export FACE="assets/img/avatar5.png"
67+
export FACE="/home/user/comps/animation/src/assets/img/avatar5.png"
6868
# export AUDIO='assets/audio/eg3_ref.wav' # audio file path is optional, will use base64str in the post request as input if is 'None'
6969
export AUDIO='None'
7070
export FACESIZE=96

0 commit comments

Comments
 (0)