Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RESOURCE内のclean_character_info.pyスクリプトを利用する #664

Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
env:
IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/voicevox_engine
PYTHON_VERSION: "3.8.10"
VOICEVOX_RESOURCE_VERSION: "0.14.2"
VOICEVOX_RESOURCE_VERSION: "0.14.3-preview.1"
VOICEVOX_CORE_VERSION: "0.14.3"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:

env:
PYTHON_VERSION: "3.8.10"
VOICEVOX_RESOURCE_VERSION: "0.14.2"
VOICEVOX_RESOURCE_VERSION: "0.14.3-preview.1"
VOICEVOX_CORE_VERSION: "0.14.3"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ RUN <<EOF
EOF

# Download Resource
ARG VOICEVOX_RESOURCE_VERSION=0.14.2
ARG VOICEVOX_RESOURCE_VERSION=0.14.3-preview.1
RUN <<EOF
set -eux

Expand Down
4 changes: 2 additions & 2 deletions build_util/process_voicevox_resource.bash
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ fi
rm -r speaker_info
cp -r $DOWNLOAD_RESOURCE_PATH/character_info speaker_info

# .png_largeファイルを消去する
rm speaker_info/*/icons/*.png_large
python $DOWNLOAD_RESOURCE_PATH/scripts/clean_character_info.py \
Hiroshiba marked this conversation as resolved.
Show resolved Hide resolved
--character_info_dir speaker_info/

# マニフェスト
jq -s '.[0] * .[1]' engine_manifest.json $DOWNLOAD_RESOURCE_PATH/engine/engine_manifest.json \
Expand Down