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

音声をすべて繋げて書き出す機能を追加 #549

Merged
merged 18 commits into from
Dec 15, 2021

Conversation

y-chan
Copy link
Member

@y-chan y-chan commented Dec 4, 2021

内容

題の通り
ただし、ショートカットキーの追加は、以下Issue・PRとの整合性を保つために待った方が良さそうです(追加しちゃってるので消す必要がある?)
マイグレーション処理は #545 に任せることにしました。

また、ツールバーのカスタマイズ(#489)とも少しconflictを起こしそうです。
こちらで必要になっているQuasar Dialogに関するプロセスをVuex内dialog.tsに移動させました。

関連 Issue

close #107

その他

書き出すときのデフォルトの名前は要検討かもです。

@y-chan y-chan marked this pull request as ready for review December 4, 2021 16:35
Copy link
Contributor

@MT224244 MT224244 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

確認用と思われるconsole.logが残っていたので、それを消せば後は問題ないと思いました!

src/store/audio.ts Outdated Show resolved Hide resolved
src/store/audio.ts Outdated Show resolved Hide resolved
Copy link
Contributor

@MT224244 MT224244 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

src/store/audio.ts Outdated Show resolved Hide resolved
@Hiroshiba
Copy link
Member

書き出すときのデフォルトの名前は要検討かもです

判断します!こちらって何になっていますか👀

@Hiroshiba
Copy link
Member

書き出しをfixする機能はありそうですが、上書き防止機能がなさそうでした。

voicevox/src/store/audio.ts

Lines 671 to 678 in c83af58

if (state.savingSetting.avoidOverwrite) {
let tail = 1;
const name = filePath.slice(0, filePath.length - 4);
while (await dispatch("CHECK_FILE_EXISTS", { file: filePath })) {
filePath = name + "[" + tail.toString() + "]" + ".wav";
tail += 1;
}
}

(全部接続した状態で、上書き防止したいことある?と思わなくもないのですが、一応・・・)

@y-chan
Copy link
Member Author

y-chan commented Dec 14, 2021

dialog.tsができたので、そちらにWITH_DIALOG関数を移動し、仰られていた上書き防止機能の実装を行いました。
レビューお願いします...!

@y-chan y-chan requested review from MT224244 and Segu-g December 14, 2021 05:42
src/store/audio.ts Outdated Show resolved Hide resolved
src/store/audio.ts Outdated Show resolved Hide resolved
@y-chan y-chan requested a review from Hiroshiba December 14, 2021 12:56
Copy link
Contributor

@MT224244 MT224244 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

すべての音声をつなげて書き出す機能を付ける
4 participants