Skip to content

Commit

Permalink
Merge branch 'main' into feat-downloader-mkdir-for-c-api-and-addition…
Browse files Browse the repository at this point in the history
…al-libraries
  • Loading branch information
qryxip committed Jan 27, 2025
2 parents 0c832b3 + 142aa42 commit 578a1b3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions crates/voicevox_core/LICENSE
1 change: 1 addition & 0 deletions crates/voicevox_core/README.md
4 changes: 2 additions & 2 deletions crates/voicevox_core_python_api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.0.0"
requires-python = ">=3.10"
dependencies = ["pydantic>=2.5.2,<3"]
description = "VOICEVOX CORE の Python バインディングです。"
license = { file = "../../LICENSE" }
readme = "../../README.md"
authors = [{ name = "Hiroshiba", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python",
Expand All @@ -13,8 +15,6 @@ classifiers = [
"Operating System :: MacOS :: MacOS X",
"Environment :: GPU :: NVIDIA CUDA",
]
# TODO:ユーザー用のREADMEを作る
# readme = "README.md"

[build-system]
requires = ["maturin>=1.3.1,<2"]
Expand Down
12 changes: 6 additions & 6 deletions example/cpp/windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ Visual Studio Installerを使用しインストールしてください。

- simple_tts\bin\x64\Debug に配置
- voicevox_core.dll
- onnxruntime.dll (TODO: 要らないはず)
- onnxruntime_providers_shared.dll (TODO: 要らないはず)
- modelフォルダ (TODO: 要らないはず)
- voicevox_onnxruntime.dll
- modelsフォルダ

- simple_tts\lib\x64 に配置
- voicevox_core.lib
Expand All @@ -50,13 +49,14 @@ simple_tts
├─bin
│ └─x64
│ └─Debug
│ │ onnxruntime.dll
│ │ onnxruntime_providers_shared.dll
│ │ simple_tts.exe
│ │ simple_tts.pdb
│ │ voicevox_core.dll
│ │ voicevox_onnxruntime.dll
│ │
│ ├─models
│ │ vvms
│ │
│ ├─model
│ └─open_jtalk_dic_utf_8-1.11
└─lib
Expand Down
2 changes: 1 addition & 1 deletion example/cpp/windows/simple_tts/simple_tts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "voicevox_core.h"

#define OPENJTALK_DICT_NAME L"open_jtalk_dic_utf_8-1.11"
#define MODEL_DIR_NAME L"model"
#define MODEL_DIR_NAME L"models\\vvms"

int main() {
std::wcout.imbue(std::locale(""));
Expand Down
2 changes: 1 addition & 1 deletion example/python/run-asyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def parse_args() -> "Args":
)
argparser.add_argument(
"--onnxruntime",
default=Onnxruntime.LIB_VERSIONED_FILENAME,
default=f"./onnxruntime/lib/{Onnxruntime.LIB_VERSIONED_FILENAME}",
help="ONNX Runtimeのライブラリのfilename",
)
argparser.add_argument(
Expand Down

0 comments on commit 578a1b3

Please sign in to comment.