Add Generic Syllabic Phonemizer#2243
Open
HeadHunter4621 wants to merge 14 commits into
Open
Conversation
… it doesn't function in normal OU. Working on figuring out whi.
…ported template and updated Resources.resx to match. Still need to make the phonemizer itself function correctly.
…-phonemizer # Conflicts: # OpenUtau.Plugin.Builtin/Data/Resources.Designer.cs
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a new built-in, language-agnostic “Generic Syllabic Phonemizer” that treats lyrics as phonetic input and uses a configurable YAML template/dictionary to classify phoneme types (vowel/stop/fricative/etc.) for syllable-based alias generation.
Changes:
- Added
GenericSyllabicPhonemizerimplementation with YAML-driven symbol typing and alias formatting logic. - Added a new built-in YAML template resource (
generic-syllabic.template.yaml) and wired it into the plugin resources. - Updated the solution header Visual Studio version metadata.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 12 comments.
Show a summary per file
| File | Description |
|---|---|
| OpenUtau.sln | Updates VS solution header version metadata. |
| OpenUtau.Plugin.Builtin/GenericSyllabicPhonemizer.cs | Introduces the new generic syllabic phonemizer implementation and YAML-based dictionary loading. |
| OpenUtau.Plugin.Builtin/Data/Resources.resx | Registers the new YAML template as an embedded resource. |
| OpenUtau.Plugin.Builtin/Data/Resources.Designer.cs | Auto-generated resource accessor updates to include the new template. |
| OpenUtau.Plugin.Builtin/Data/generic-syllabic.template.yaml | Adds the default YAML symbol/type template and example entry. |
Files not reviewed (1)
- OpenUtau.Plugin.Builtin/Data/Resources.Designer.cs: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a language-agnostic phonemizer that treats all lyrics as phonetic hints and uses a YAML dictionary to determine phoneme types. The default dictionary only contains ARPAbet and romaji phonemes, but it easy to modify.
Apologies for submitting this PR twice, I forgot to remove the files from when this was built as an external phonemizer.