Skip to content

Commit

Permalink
Add "m" consonant fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
lottev1991 authored Jul 4, 2023
1 parent 52f8acb commit c1bdc89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenUtau.Plugin.Builtin/JapaneseCVVCPhonemizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class JapaneseCVVCPhonemizer : Phonemizer {

// in case voicebank is missing certain symbols
static readonly string[] substitution = new string[] {
"ty,ch,ts=t", "j,dy=d", "gy=g", "ky=k", "py=p", "ny=n", "ry=r", "hy,f=h", "by,v=b", "dz=z", "l=r", "ly=l"
"ty,ch,ts=t", "j,dy=d", "gy=g", "ky=k", "py=p", "ny=n", "ry=r", "my=m", "hy,f=h", "by,v=b", "dz=z", "l=r", "ly=l"
};

static readonly Dictionary<string, string> vowelLookup;
Expand Down

0 comments on commit c1bdc89

Please sign in to comment.