-
Notifications
You must be signed in to change notification settings - Fork 120
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
[docs] ユーザーガイドを追加 #699
The head ref may contain hidden characters: "\u30E6\u30FC\u30B6\u30FC\u30AC\u30A4\u30C9\u8FFD\u52A0"
[docs] ユーザーガイドを追加 #699
Conversation
> [!NOTE] | ||
> Downloader を実行すればコアの動的ライブラリもダウンロードされているので、Python ライブラリを用いない場合はこの章はスキップできます。 | ||
|
||
`pip install`で Python ライブラリをインストールします。使いたい OS・アーキテクチャ・デバイス・バージョンによって URL が変わるので、[最新のリリース](https://github.com/VOICEVOX/voicevox_core/releases/latest/)の`Python wheel`に合わせます。 | ||
|
||
```sh | ||
pip install https://github.com/VOICEVOX/voicevox_core/releases/download/[バージョン]/voicevox_core-[バージョン]+[デバイス]-cp38-abi3-[OS・アーキテクチャ].whl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここら辺しんどいのでリポジトリ作って( #489 )それを使うようにしたいですね…
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#674 にこのファイルも入れたいですね。
Co-authored-by: Nanashi. <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
あ! レビューありがとうございます!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
一点ありますが、LGTM!
docs/usage.md
Outdated
|
||
VOICEVOX の音声合成のコア部分で、VOICEVOX 音声合成が可能です。 | ||
|
||
コアを利用する方法は2つあります。動的ライブラリを直接実行する方法と、各言語向けのライブラリをインストールする方法です。初心者の方は後者がおすすめです。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Python APIやJava APIはC/ENGINE向けのlibvoicevox_coreを含んでいるわけではないので、「直接実行」というのは若干語弊がありそう?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
おっと!
僕もPython APIやJava APIは動的ライブラリを直接実行する方法だとは思ってない感じです!
どこかテキストに語弊がある箇所がありそうなのですが、どのあたりからどう判断されましたか?
(文面的にややこしい部分があれば崩しておいた方が良さそうだなと思って聞いてみました)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここで大事なのは動的ライブラリがあるということと、各言語向けのライブラリもあるということかなと思いました!
それと「直接」という言葉の裏に「間接」という言葉もあり、片方が直接実行ならもう片方は間接実行かなと深読みする人もいるかもですかね。
なのでこんな感じにしてみたいと思います。
コアを利用する方法は2つあります。動的ライブラリを使う方法と、各言語向けのライブラリを使う方法です。初心者の方は後者がおすすめです。
このユーザーガイドですが、プログラミングを始めて3ヶ月くらいとかの右も左もわからない人でもまあ始めてみようかなと思えるぐらい(あるいはちょっとレベル足りないからまた来ようと思えるくらいの)を目指してみました。 問題ないと思うのでマージしたいと思います! |
内容
コア0.15用のユーザーガイドを追加してみました。
とりあえず音声合成までの一通りの流れと、
AudioQuery
を使った簡単なサンプルを紹介しています。ユーザー辞書の使い方も書こうかなと思ったのですが、一旦完成を優先してペンディングにしています。
ちょっと言葉の使い方が不自然な箇所がちらほらある気がしています・・・。一旦これでもいいのかなと思っていますが、ちょっと変えた方が良さそうな点などがあれば教えてください。
関連 Issue
その他