Go to file
2024-07-02 21:06:37 -04:00
SAPIServer better error handling in HTTP server 2024-07-02 20:48:40 -04:00
.gitattributes Add .gitignore and .gitattributes. 2024-07-02 20:12:59 -04:00
.gitignore Add .gitignore and .gitattributes. 2024-07-02 20:12:59 -04:00
LICENSE.txt add readme and license 2024-07-02 21:06:37 -04:00
README.md add readme and license 2024-07-02 21:06:37 -04:00
SAPIServer.sln Add project files. 2024-07-02 20:13:00 -04:00

SAPIServer

Simple HTTP frontend API for Microsoft Speech API

Running

Usage: SAPIServer.exe <port>

API Usage

List voices

GET /api/voices

{"voices":["LH Michael","LH Michelle","Microsoft Sam"]}

Synthesize text

POST /api/synthesize 
Content-Type: application/json

{"text":"Lorem ipsum doler sit amet...","voice":"Microsoft Sam"}

Returns synthesized TTS audio as a wave-form file.