add avatar enable switch

This commit is contained in:
wataru 2022-09-01 18:12:54 +09:00
parent 1650f9b7f5
commit 463a8336c8
4 changed files with 4 additions and 3 deletions

View File

@ -15,6 +15,7 @@
"gpu": 0, "gpu": 0,
"available_gpus": [-1, 0, 1, 2, 3, 4], "available_gpus": [-1, 0, 1, 2, 3, 4],
"avatar": { "avatar": {
"enable_avatar": true,
"motion_capture_face": true, "motion_capture_face": true,
"motion_capture_upperbody": true, "motion_capture_upperbody": true,
"lip_overwrite_with_voice": true, "lip_overwrite_with_voice": true,

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,7 @@
# 参考:https://programwiz.org/2022/03/22/how-to-write-shell-script-for-option-parsing/ # 参考:https://programwiz.org/2022/03/22/how-to-write-shell-script-for-option-parsing/
DOCKER_IMAGE=dannadori/voice-changer:20220831_194409 DOCKER_IMAGE=dannadori/voice-changer:20220901_181034
TENSORBOARD_PORT=6006 TENSORBOARD_PORT=6006
VOICE_CHANGER_PORT=8080 VOICE_CHANGER_PORT=8080

View File

@ -1,4 +1,4 @@
FROM dannadori/voice-changer-internal:20220831_194151 as front FROM dannadori/voice-changer-internal:20220901_180901 as front
FROM debian:bullseye-slim as base FROM debian:bullseye-slim as base
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive