-
Notifications
You must be signed in to change notification settings - Fork 312
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
[release-0.14] マルチエンジン機能を実験的機能から通常機能にあげる #1641
The head ref may contain hidden characters: "\u30DE\u30EB\u30C1\u30A8\u30F3\u30B8\u30F3\u6A5F\u80FD\u3092\u5B9F\u9A13\u7684\u6A5F\u80FD\u304B\u3089\u901A\u5E38\u6A5F\u80FD\u306B\u3042\u3052\u308B"
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -252,6 +252,11 @@ GPU をお持ちの方は、音声の生成がずっと速い GPU モードを | |
GPU モードを利用するには、GPU が必要です。 | ||
Linux は Nvidia 製 GPU のみに対応しています。 | ||
|
||
#### 音声のサンプリングレート | ||
|
||
音声のサンプリングレートを変更して再生・保存します。 | ||
サンプリングレートを高くしても音声の品質は上がりません。 | ||
|
||
### 「操作」項目 | ||
|
||
#### パラメータの引き継ぎ | ||
|
@@ -294,6 +299,11 @@ Linux は Nvidia 製 GPU のみに対応しています。 | |
|
||
### 「高度な設定」項目 | ||
|
||
#### マルチエンジン機能 | ||
|
||
VOICEVOX API 準拠エンジンを VOICEVOX 内で利用できるようになります。 | ||
マルチエンジン機能をオンにしたあと、メニューにある「エンジン」の「エンジンの管理」に移動し、VOICEVOX API 準拠エンジンの VVPP ファイルをインストールするか、VOICEVOX 系ソフトウェア内のエンジンのパスを指定することで利用できます。 | ||
|
||
Comment on lines
+302
to
+306
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 実験的項目から移動し、「VOICEVOX 以外の 」という表記を消しました |
||
#### 音声をステレオ化 | ||
|
||
音声をモノラルからステレオに変換して再生・保存します。 | ||
|
@@ -302,11 +312,6 @@ Linux は Nvidia 製 GPU のみに対応しています。 | |
|
||
音声を再生するデバイスを変更できます。 | ||
|
||
#### 音声のサンプリングレート | ||
|
||
音声のサンプリングレートを変更して再生・保存します。 | ||
サンプリングレートを高くしても音声の品質は上がりません。 | ||
|
||
### 「実験的機能」項目 | ||
|
||
開発中の便利機能を利用することができます。 | ||
|
@@ -329,11 +334,6 @@ Linux は Nvidia 製 GPU のみに対応しています。 | |
対応している音声を混ぜてモーフィングした音声を合成できるようになります。 | ||
2つの音声を一度生成してから、音声を機械的に分析・再合成する後処理を行うことで実現しています。 | ||
|
||
#### マルチエンジン機能 | ||
|
||
VOICEVOX 以外の VOICEVOX API 準拠エンジンを VOICEVOX 内で利用できるようになります。 | ||
マルチエンジン機能をオンにしたあと、メニューにある「エンジン」の「エンジンの管理」に移動し、VOICEVOX API 準拠エンジンの VVPP ファイルをインストールするか、VOICEVOX 系ソフトウェア内のエンジンのパスを指定することで利用できます。 | ||
|
||
### 「データ収集」項目 | ||
|
||
#### ソフトウェア利用状況のデータ収集を許可する | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -529,11 +529,35 @@ | |
</q-card-actions> | ||
</q-card> | ||
|
||
<!-- Experimental Card --> | ||
<!-- Advanced Card --> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ここは「高度な設定」なのに実験的項目用のコメントがされていたのでついでに修正 |
||
<q-card flat class="setting-card"> | ||
<q-card-actions> | ||
<div class="text-h5">高度な設定</div> | ||
</q-card-actions> | ||
<q-card-actions class="q-px-md q-py-none bg-surface"> | ||
<div>マルチエンジン機能</div> | ||
<div> | ||
Comment on lines
+537
to
+539
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 移動してきただけ |
||
<q-icon name="help_outline" size="sm" class="help-hover-icon"> | ||
<q-tooltip | ||
:delay="500" | ||
anchor="center left" | ||
self="center right" | ||
transition-show="jump-left" | ||
transition-hide="jump-right" | ||
> | ||
複数のVOICEVOX準拠エンジンを利用可能にする | ||
sevenc-nanashi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</q-tooltip> | ||
</q-icon> | ||
</div> | ||
<q-space /> | ||
<q-toggle | ||
:model-value="savingSetting.enableMultiEngine" | ||
@update:model-value=" | ||
handleSavingSettingChange('enableMultiEngine', $event) | ||
" | ||
> | ||
</q-toggle> | ||
</q-card-actions> | ||
<q-card-actions class="q-px-md q-py-none bg-surface"> | ||
<div>音声をステレオ化</div> | ||
<div> | ||
|
@@ -584,6 +608,8 @@ | |
</q-select> | ||
</q-card-actions> | ||
</q-card> | ||
|
||
<!-- Experimental Card --> | ||
<q-card flat class="setting-card"> | ||
<q-card-actions> | ||
<div class="text-h5">実験的機能</div> | ||
|
@@ -664,30 +690,6 @@ | |
> | ||
</q-toggle> | ||
</q-card-actions> | ||
<q-card-actions class="q-px-md q-py-none bg-surface"> | ||
<div>マルチエンジン機能</div> | ||
<div> | ||
<q-icon name="help_outline" size="sm" class="help-hover-icon"> | ||
<q-tooltip | ||
:delay="500" | ||
anchor="center left" | ||
self="center right" | ||
transition-show="jump-left" | ||
transition-hide="jump-right" | ||
> | ||
複数のVOICEVOX準拠エンジンを利用可能にする | ||
</q-tooltip> | ||
</q-icon> | ||
</div> | ||
<q-space /> | ||
<q-toggle | ||
:model-value="experimentalSetting.enableMultiEngine" | ||
@update:model-value=" | ||
changeExperimentalSetting('enableMultiEngine', $event) | ||
" | ||
> | ||
</q-toggle> | ||
</q-card-actions> | ||
</q-card> | ||
<q-card flat class="setting-card"> | ||
<q-card-actions> | ||
|
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.
エンジン項目に移動したのを忘れてたのでついでに移動しておきました