voicevox / build_util /process_voicevox_resource.bash
2ndelement's picture
init
f1f433f
raw
history blame contribute delete
855 Bytes
set -eux
if [ ! -v DOWNLOAD_RESOURCE_PATH ]; then
echo "DOWNLOAD_RESOURCE_PATH銇屾湭瀹氱京銇с仚"
exit 1
fi
rm -r speaker_info
cp -r $DOWNLOAD_RESOURCE_PATH/character_info speaker_info
python $DOWNLOAD_RESOURCE_PATH/scripts/clean_character_info.py \
--character_info_dir speaker_info/
# 銉炪儖銉曘偋銈广儓
jq -s '.[0] * .[1]' engine_manifest.json $DOWNLOAD_RESOURCE_PATH/engine/engine_manifest.json \
> engine_manifest.json.tmp
mv engine_manifest.json.tmp engine_manifest.json
python build_util/merge_update_infos.py \
engine_manifest_assets/update_infos.json \
$DOWNLOAD_RESOURCE_PATH/engine/engine_manifest_assets/update_infos.json \
engine_manifest_assets/update_infos.json
for f in $(ls $DOWNLOAD_RESOURCE_PATH/engine/engine_manifest_assets/* | grep -v update_infos.json); do
cp $f ./engine_manifest_assets/
done