-
Notifications
You must be signed in to change notification settings - Fork 305
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
[song]ノーツが先頭に存在すると動作しない #2031
Comments
Mac版でも同様のバグを確認しました。 Lines 424 to 457 in fb0adce
|
ご報告&調査ありがとうございます! こちら、以下を考慮せずpitchEditDataをf0に転写しようとして、f0にundefinedが入ってしまっているようです。
修正方法ですが、startFrameの算出部分を const f0StartFrame = Math.round(
singingGuide.startTime * singingGuide.frameRate,
);
const startFrame = Math.max(0, f0StartFrame); に変更するとf0にundefinedが入らなくなり、エラーも発生しなくなると思います。 修正PRを作成します…! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
不具合の内容
ノーツが先頭に存在するとエラーになる
現象・ログ
ノーツが1小節目の最初に存在するとエラーになる(メッセージは歌詞が一文字までですとなっているが原因は違いそうです)
再現手順
一番最初にノーツを置くとでます。後ろの場所に移動させたらエラーは消えました。
VOICEVOXのバージョン
0.19.0
OSの種類/ディストリ/バージョン
その他
apiで最初に無音の秒数がないと実行できない仕様に関係するバグだと思います
The text was updated successfully, but these errors were encountered: