-
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
[project-s] ハミング対応のエンジンでレンダリングできるようにする #1728
Conversation
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.
エラーが起こる件に関して、とりあえず超ワークアラウンドですが解決策を見つけたので共有です!
こちらのINITIALIZE_ENGINE_SPEAKER
を実行しないようにすれば一旦動きました!!
https://github.com/sigprogramming/voicevox/blob/e6a10c7ba0bb20c7a4b3b0f4fa9f1481fd897a4f/src/store/singing.ts#L207-L210
解決策ありがとうございます! |
"singFrameAudioQuerySingFrameAudioQueryPost" | ||
)({ | ||
score: { notes }, | ||
styleId: 999, // TODO: 設定できるようにする |
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.
styleIdはひとまず999固定にしています。
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!!!
0.15アプデがやっと終わりつつあるので、僕も参戦できると思います!!
notes.push({ | ||
key: undefined, | ||
frameLength: restFrameLength, | ||
lyric: "", | ||
}); |
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.
(細かいですけど)この空っぽNoteをconst restNote
に入れるのもありだなと思いました!
内容
ハミング対応のエンジンでレンダリングできるようにします。
また、以下も行います。
isSelfEventTarget
関数が呼ばれていなかったので修正関連 Issue
VOICEVOX/voicevox_project#15
その他