├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── nuget-publish.yml │ └── tests.yml ├── .gitignore ├── Directory.Build.props ├── KokoroSharp.Tests ├── KokoroSharp.Tests.csproj └── TokenizerTests.cs ├── KokoroSharp.sln ├── KokoroSharp ├── Core │ ├── Handles.cs │ ├── KokoroEngine.cs │ ├── KokoroJob.cs │ ├── KokoroLanguage.cs │ ├── KokoroModel.cs │ ├── KokoroVoice.cs │ ├── KokoroWaveOutEvent.cs │ └── Packets.cs ├── HighLevel │ ├── KokoroLoader.cs │ ├── KokoroPlayback.cs │ ├── KokoroTTS.cs │ └── KokoroVoiceManager.cs ├── KokoroSharp.csproj ├── KokoroSharp.targets ├── Processing │ ├── SegmentationSystem.cs │ ├── SpeechGuesser.cs │ ├── Strategies.cs │ └── Tokenizer.cs └── Utilities │ ├── CrossPlatformHelper.cs │ └── KokoroWavSynthesizer.cs ├── LICENSE ├── Program.cs ├── README.md ├── RUNNING_ON_GPU.md └── Runtimes ├── Directory.Build.props ├── KokoroSharp.CPU └── KokoroSharp.CPU.csproj ├── KokoroSharp.DirectML └── KokoroSharp.DirectML.csproj ├── KokoroSharp.GPU.Linux └── KokoroSharp.GPU.Linux.csproj ├── KokoroSharp.GPU.Windows └── KokoroSharp.GPU.Windows.csproj └── KokoroSharp.GPU └── KokoroSharp.GPU.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/nuget-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/.github/workflows/nuget-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /KokoroSharp.Tests/KokoroSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp.Tests/KokoroSharp.Tests.csproj -------------------------------------------------------------------------------- /KokoroSharp.Tests/TokenizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp.Tests/TokenizerTests.cs -------------------------------------------------------------------------------- /KokoroSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp.sln -------------------------------------------------------------------------------- /KokoroSharp/Core/Handles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Core/Handles.cs -------------------------------------------------------------------------------- /KokoroSharp/Core/KokoroEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Core/KokoroEngine.cs -------------------------------------------------------------------------------- /KokoroSharp/Core/KokoroJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Core/KokoroJob.cs -------------------------------------------------------------------------------- /KokoroSharp/Core/KokoroLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Core/KokoroLanguage.cs -------------------------------------------------------------------------------- /KokoroSharp/Core/KokoroModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Core/KokoroModel.cs -------------------------------------------------------------------------------- /KokoroSharp/Core/KokoroVoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Core/KokoroVoice.cs -------------------------------------------------------------------------------- /KokoroSharp/Core/KokoroWaveOutEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Core/KokoroWaveOutEvent.cs -------------------------------------------------------------------------------- /KokoroSharp/Core/Packets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Core/Packets.cs -------------------------------------------------------------------------------- /KokoroSharp/HighLevel/KokoroLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/HighLevel/KokoroLoader.cs -------------------------------------------------------------------------------- /KokoroSharp/HighLevel/KokoroPlayback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/HighLevel/KokoroPlayback.cs -------------------------------------------------------------------------------- /KokoroSharp/HighLevel/KokoroTTS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/HighLevel/KokoroTTS.cs -------------------------------------------------------------------------------- /KokoroSharp/HighLevel/KokoroVoiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/HighLevel/KokoroVoiceManager.cs -------------------------------------------------------------------------------- /KokoroSharp/KokoroSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/KokoroSharp.csproj -------------------------------------------------------------------------------- /KokoroSharp/KokoroSharp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/KokoroSharp.targets -------------------------------------------------------------------------------- /KokoroSharp/Processing/SegmentationSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Processing/SegmentationSystem.cs -------------------------------------------------------------------------------- /KokoroSharp/Processing/SpeechGuesser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Processing/SpeechGuesser.cs -------------------------------------------------------------------------------- /KokoroSharp/Processing/Strategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Processing/Strategies.cs -------------------------------------------------------------------------------- /KokoroSharp/Processing/Tokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Processing/Tokenizer.cs -------------------------------------------------------------------------------- /KokoroSharp/Utilities/CrossPlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Utilities/CrossPlatformHelper.cs -------------------------------------------------------------------------------- /KokoroSharp/Utilities/KokoroWavSynthesizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/KokoroSharp/Utilities/KokoroWavSynthesizer.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/README.md -------------------------------------------------------------------------------- /RUNNING_ON_GPU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/RUNNING_ON_GPU.md -------------------------------------------------------------------------------- /Runtimes/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/Runtimes/Directory.Build.props -------------------------------------------------------------------------------- /Runtimes/KokoroSharp.CPU/KokoroSharp.CPU.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/Runtimes/KokoroSharp.CPU/KokoroSharp.CPU.csproj -------------------------------------------------------------------------------- /Runtimes/KokoroSharp.DirectML/KokoroSharp.DirectML.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/Runtimes/KokoroSharp.DirectML/KokoroSharp.DirectML.csproj -------------------------------------------------------------------------------- /Runtimes/KokoroSharp.GPU.Linux/KokoroSharp.GPU.Linux.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/Runtimes/KokoroSharp.GPU.Linux/KokoroSharp.GPU.Linux.csproj -------------------------------------------------------------------------------- /Runtimes/KokoroSharp.GPU.Windows/KokoroSharp.GPU.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/Runtimes/KokoroSharp.GPU.Windows/KokoroSharp.GPU.Windows.csproj -------------------------------------------------------------------------------- /Runtimes/KokoroSharp.GPU/KokoroSharp.GPU.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyrcaxis/KokoroSharp/HEAD/Runtimes/KokoroSharp.GPU/KokoroSharp.GPU.csproj --------------------------------------------------------------------------------