Extend the EngineInterface (similar to the espeak demo) to send API requests to Larynx
- Endpoint: https://larynx-tts.wmcloud.org/api
- Method: POST or GET
- Docs: https://larynx.theresnotime.io/openapi (swagger)
<?xml version="1.0"?> <speak xmlns="http://www.w3.org/2001/10/synthesis" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.1" xsi:schemaLocation="http://www.w3.org/2001/10/synthesis http://www.w3.org/TR/speech-synthesis11/synthesis.xsd" xml:lang="en-US"> <lexicon xml:id="ipaInput" alphabet="ipa"> <lexeme> <grapheme>{word}</grapheme> <phoneme>{ipa}</phoneme> </lexeme> </lexicon> <lookup ref="ipaInput"> <w>{word}</w> </lookup> </speak>