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

update jpreprocess to v0.9.1 #30

Merged
merged 2 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib"]
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
napi-derive = "2.12.2"

jpreprocess = "0.8.1"
jpreprocess = "0.9.1"
jbonsai = "0.1.0"
audiopus = "=0.3.0-rc.0"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ om-syrinxでは,入力全体を一度に処理するのではなく,順番
`npm install github:discordjs-japan/om-syrinx#v0.3.0`を実行してください.
- jpreprocess用の辞書をダウンロードする:

[jpreprocessのリリース](https://github.com/jpreprocess/jpreprocess/releases/v0.8.1)から[辞書 (`naist-jdic-jpreprocess.tar.gz`)](https://github.com/jpreprocess/jpreprocess/releases/download/v0.8.1/naist-jdic-jpreprocess.tar.gz) をダウンロードし,カレントディレクトリに解凍してください.
[jpreprocessのリリース](https://github.com/jpreprocess/jpreprocess/releases/v0.9.1)から[辞書 (`naist-jdic-jpreprocess.tar.gz`)](https://github.com/jpreprocess/jpreprocess/releases/download/v0.9.1/naist-jdic-jpreprocess.tar.gz) をダウンロードし,カレントディレクトリに解凍してください.
- jbonsai用のモデルをダウンロードする:

[htsvoice-tohoku-f01](https://github.com/icn-lab/htsvoice-tohoku-f01)の`master`ブランチ (<https://github.com/icn-lab/htsvoice-tohoku-f01/archive/refs/heads/master.tar.gz>) をダウンロードし,カレントディレクトリに解凍してください.
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe("synthesis", () => {
before(async () => {
if (!fs.existsSync(path.join(__dirname, "naist-jdic"))) {
await fetchAndExtract(
"https://github.com/jpreprocess/jpreprocess/releases/download/v0.8.1/naist-jdic-jpreprocess.tar.gz",
"https://github.com/jpreprocess/jpreprocess/releases/download/v0.9.1/naist-jdic-jpreprocess.tar.gz",
__dirname,
);
}
Expand Down