├── .gitignore ├── LICENSE ├── README.md └── src ├── Speech ├── Controller │ ├── AITalk3Controller.cs │ ├── AITalk3Enumerator.cs │ ├── AIVOICEController.cs │ ├── AIVOICEEnumerator.cs │ ├── COEIROINKController.cs │ ├── COEIROINKEnumerator.cs │ ├── CeVIO64Controller.cs │ ├── CeVIO64Enumerator.cs │ ├── CeVIOAIController.cs │ ├── CeVIOAIEnumerator.cs │ ├── CeVIOController.cs │ ├── CeVIOEnumerator.cs │ ├── GynoidTalkController.cs │ ├── GynoidTalkEnumerator.cs │ ├── ISpeechController.cs │ ├── ISpeechEnumerator.cs │ ├── OtomachiUnaTalkController.cs │ ├── OtomachiUnaTalkEnumerator.cs │ ├── SAPI5Controller.cs │ ├── SAPI5Enumerator.cs │ ├── SHAREVOXController.cs │ ├── SHAREVOXEnumerator.cs │ ├── VOICEPEAKController.cs │ ├── VOICEPEAKEnumerator.cs │ ├── VOICEVOXController.cs │ ├── VOICEVOXEnumerator.cs │ ├── Voiceroid2Controller.cs │ ├── Voiceroid2Enumerator.cs │ ├── Voiceroid64Controller.cs │ ├── Voiceroid64Enumerator.cs │ ├── VoiceroidPlusController.cs │ └── VoiceroidPlusEnumerator.cs ├── Effect │ ├── Wave.cs │ └── Whisper.cs ├── EngineParameters.cs ├── Properties │ └── AssemblyInfo.cs ├── SoundPlayer.cs ├── SoundRecorder.cs ├── Speech.csproj ├── SpeechController.cs ├── SpeechEngineInfo.cs ├── app.config └── packages.config ├── SpeechSample ├── App.config ├── Options.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── SpeechSample.csproj ├── SpeechWebServer ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SpeechWebServer.csproj ├── app.manifest ├── html │ └── index.html └── packages.config ├── TTSController.sln └── TTSController_vs2019.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/README.md -------------------------------------------------------------------------------- /src/Speech/Controller/AITalk3Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/AITalk3Controller.cs -------------------------------------------------------------------------------- /src/Speech/Controller/AITalk3Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/AITalk3Enumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/AIVOICEController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/AIVOICEController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/AIVOICEEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/AIVOICEEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/COEIROINKController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/COEIROINKController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/COEIROINKEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/COEIROINKEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/CeVIO64Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/CeVIO64Controller.cs -------------------------------------------------------------------------------- /src/Speech/Controller/CeVIO64Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/CeVIO64Enumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/CeVIOAIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/CeVIOAIController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/CeVIOAIEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/CeVIOAIEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/CeVIOController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/CeVIOController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/CeVIOEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/CeVIOEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/GynoidTalkController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/GynoidTalkController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/GynoidTalkEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/GynoidTalkEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/ISpeechController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/ISpeechController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/ISpeechEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/ISpeechEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/OtomachiUnaTalkController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/OtomachiUnaTalkController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/OtomachiUnaTalkEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/OtomachiUnaTalkEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/SAPI5Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/SAPI5Controller.cs -------------------------------------------------------------------------------- /src/Speech/Controller/SAPI5Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/SAPI5Enumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/SHAREVOXController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/SHAREVOXController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/SHAREVOXEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/SHAREVOXEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/VOICEPEAKController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/VOICEPEAKController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/VOICEPEAKEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/VOICEPEAKEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/VOICEVOXController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/VOICEVOXController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/VOICEVOXEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/VOICEVOXEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/Voiceroid2Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/Voiceroid2Controller.cs -------------------------------------------------------------------------------- /src/Speech/Controller/Voiceroid2Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/Voiceroid2Enumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/Voiceroid64Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/Voiceroid64Controller.cs -------------------------------------------------------------------------------- /src/Speech/Controller/Voiceroid64Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/Voiceroid64Enumerator.cs -------------------------------------------------------------------------------- /src/Speech/Controller/VoiceroidPlusController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/VoiceroidPlusController.cs -------------------------------------------------------------------------------- /src/Speech/Controller/VoiceroidPlusEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Controller/VoiceroidPlusEnumerator.cs -------------------------------------------------------------------------------- /src/Speech/Effect/Wave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Effect/Wave.cs -------------------------------------------------------------------------------- /src/Speech/Effect/Whisper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Effect/Whisper.cs -------------------------------------------------------------------------------- /src/Speech/EngineParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/EngineParameters.cs -------------------------------------------------------------------------------- /src/Speech/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Speech/SoundPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/SoundPlayer.cs -------------------------------------------------------------------------------- /src/Speech/SoundRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/SoundRecorder.cs -------------------------------------------------------------------------------- /src/Speech/Speech.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/Speech.csproj -------------------------------------------------------------------------------- /src/Speech/SpeechController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/SpeechController.cs -------------------------------------------------------------------------------- /src/Speech/SpeechEngineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/SpeechEngineInfo.cs -------------------------------------------------------------------------------- /src/Speech/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/app.config -------------------------------------------------------------------------------- /src/Speech/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/Speech/packages.config -------------------------------------------------------------------------------- /src/SpeechSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechSample/App.config -------------------------------------------------------------------------------- /src/SpeechSample/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechSample/Options.cs -------------------------------------------------------------------------------- /src/SpeechSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechSample/Program.cs -------------------------------------------------------------------------------- /src/SpeechSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SpeechSample/SpeechSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechSample/SpeechSample.csproj -------------------------------------------------------------------------------- /src/SpeechWebServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechWebServer/App.config -------------------------------------------------------------------------------- /src/SpeechWebServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechWebServer/Program.cs -------------------------------------------------------------------------------- /src/SpeechWebServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechWebServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SpeechWebServer/SpeechWebServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechWebServer/SpeechWebServer.csproj -------------------------------------------------------------------------------- /src/SpeechWebServer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechWebServer/app.manifest -------------------------------------------------------------------------------- /src/SpeechWebServer/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechWebServer/html/index.html -------------------------------------------------------------------------------- /src/SpeechWebServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/SpeechWebServer/packages.config -------------------------------------------------------------------------------- /src/TTSController.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/TTSController.sln -------------------------------------------------------------------------------- /src/TTSController_vs2019.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksasao/TTSController/HEAD/src/TTSController_vs2019.sln --------------------------------------------------------------------------------