Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
40171cb
Add HTS label support infrastructure
rokujyushi May 18, 2026
7572f6e
Addition of NEUTRINO Support
rokujyushi May 18, 2026
92c1f73
Fix expected values for test assertions
rokujyushi May 18, 2026
ebfe4e4
Addressing Copilot AI review comments
rokujyushi May 18, 2026
53cac3f
Addressing Copilot AI review comments
rokujyushi May 18, 2026
54f77a3
Changing from a design that shares logic in the base class to impleme…
rokujyushi May 18, 2026
9eec4e8
Merge remote-tracking branch 'origin/hts-label' into neutrino
rokujyushi May 18, 2026
ea527ac
Unixで実行可能なファイルパスに修正
rokujyushi May 19, 2026
6b02dd4
Change the voicebank version information to be retrieved from the Tom…
rokujyushi May 19, 2026
c4d7790
Merge branch 'neutrino' of https://github.com/rokujyushi/OpenUtau int…
rokujyushi May 19, 2026
9b49026
Added processing to consider toneShift in pitch calculation
rokujyushi May 20, 2026
6e55aed
Refactoring of log improvements and environment variable settings
rokujyushi May 20, 2026
930782a
Unifying Path Handling
rokujyushi May 20, 2026
536ccd5
Address review comments from Copilot
rokujyushi May 20, 2026
60ca037
Address review comments from Copilot
rokujyushi May 20, 2026
b08c1de
Merged the fix for hts-label.
rokujyushi May 20, 2026
0adbd7b
Improvements to Vowel Extension Note Processing and Timing Calculations
rokujyushi May 21, 2026
06dd804
Improvements to Vowel Extension Note Processing and Timing Calculations
rokujyushi May 21, 2026
b97e102
Improvement of lyric processing and modification of vowel extension n…
rokujyushi May 21, 2026
317c910
Changed the naming convention for cache files to use hash values.
rokujyushi May 22, 2026
2e001a0
Improved path handling for command line arguments
rokujyushi May 22, 2026
dffeec9
Exposing monoLabel and adding customization processing
rokujyushi May 22, 2026
f4426db
Merge branch 'stakira:master' into neutrino
rokujyushi May 22, 2026
934cb92
Merge branch 'stakira:master' into hts-label
rokujyushi May 22, 2026
27ac2aa
In accordance with the NEUTRINO update, I have set the minimum versio…
rokujyushi May 30, 2026
95b448b
Refactor tone writing in HashPhraseGroups for clarity
rokujyushi Jun 7, 2026
36be00a
Fixing dictionary loading order and adding tests
rokujyushi Jun 7, 2026
623e85f
Remove unused using directives
rokujyushi Jun 7, 2026
623f183
The processing in HTSNoteToPhonemes was outdated, so I aligned it wit…
rokujyushi Jun 7, 2026
3389366
Merge branch 'hts-label' of https://github.com/rokujyushi/OpenUtau in…
rokujyushi Jun 7, 2026
4ff3b51
Merge branch 'openutau:master' into hts-label
rokujyushi Jun 7, 2026
7446cc0
Merge branch 'hts-label' of https://github.com/rokujyushi/OpenUtau in…
rokujyushi Jun 7, 2026
9d82712
Merge branch 'pr2132' into NEUTRINO
27704534 Jun 25, 2026
ad9226e
Merge branch 'pr2136' into NEUTRINO
27704534 Jun 25, 2026
e65fa30
fix-NEUTRINO
27704534 Jun 25, 2026
069180b
fix-VoicebankInstaller
27704534 Jun 25, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions OpenUtau.Core/Classic/ClassicSingerLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ static USinger AdjustSingerType(Voicebank v) {
return new Core.DiffSinger.DiffSingerSinger(v) as USinger;
case USingerType.Voicevox:
return new Core.Voicevox.VoicevoxSinger(v) as USinger;
case USingerType.Neutrino:
return new Core.Neutrino.NeutrinoSinger(v) as USinger;
default:
return new ClassicSinger(v) as USinger;
}
Expand Down
3 changes: 2 additions & 1 deletion OpenUtau.Core/Classic/VoicebankInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public void Install(string path, string singerType) {
File.WriteAllText(touch, "\n");
var config = new VoicebankConfig() {
TextFileEncoding = textEncoding.WebName,
SingerType = singerType,
};
using (var stream = File.Open(touch.Replace(".txt", ".yaml"), FileMode.Create)) {
config.Save(stream);
Expand Down Expand Up @@ -129,4 +130,4 @@ static string HashPath(string path) {
return Path.Combine(HashPath(dir), file);
}
}
}
}
Loading