Skip to content

Commit

Permalink
Merge pull request #766 from lottev1991/patch-36
Browse files Browse the repository at this point in the history
[JA CVVC & JA Presamp] Add "m" consonant fallback
  • Loading branch information
stakira authored Jul 5, 2023
2 parents 2c2e87f + c1bdc89 commit 9403633
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion OpenUtau.Plugin.Builtin/JapanesePresampPhonemizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class JapanesePresampPhonemizer : 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> substituteLookup;
Expand Down

0 comments on commit 9403633

Please sign in to comment.