Skip to content

Commit

Permalink
fixed bug that suffixes not applied in end phoneme
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Jan 18, 2024
1 parent c38b68e commit 6d2b50d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenUtau.Plugin.Builtin/KoreanCBNNPhonemizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,11 @@ private Result ConvertForCBNN(Note[] notes, string[] prevLyric, string[] thisLyr
if (isItNeedsFrontCV){
return isRelaxedVC ?
GenerateResult(FindInOto(frontCV, note), FindInOto(batchim, note), totalDuration, 120, 8)
: GenerateResult(FindInOto(frontCV, note), FindInOto(batchim, note), endSound, totalDuration, 120, 2, 3);
: GenerateResult(FindInOto(frontCV, note), FindInOto(batchim, note), FindInOto(endSound, note), totalDuration, 120, 2, 3);
}
return isRelaxedVC ?
GenerateResult(FindInOto(CV, note), FindInOto(batchim, note), totalDuration, 120, 8)
: GenerateResult(FindInOto(CV, note), FindInOto(batchim, note), endSound, totalDuration, 120, 2, 3);
: GenerateResult(FindInOto(CV, note), FindInOto(batchim, note), FindInOto(endSound, note), totalDuration, 120, 2, 3);
}
else {
if (isItNeedsFrontCV){
Expand Down

0 comments on commit 6d2b50d

Please sign in to comment.