web.skylark.tts.api-v0.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aspectran-demo Show documentation
Show all versions of aspectran-demo Show documentation
Aspectran module showcasing a demo application
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE aspectran PUBLIC "-//ASPECTRAN//DTD Aspectran 8.0//EN" "http://aspectran.github.io/dtd/aspectran-8.dtd"> <aspectran> <description> TTS API V0 </description> <settings> <setting name="transletNamePrefix" value="/skylark/api/v0"/> </settings> <translet name="/tts"> <request> <parameters> <item name="text" mandatory="true"/> </parameters> </request> <headers> <item name="Content-Type">text/plain</item> <item name="Content-Transfer-Encoding">base64</item> </headers> <action bean="ttsApiV0" method="tts"/> </translet> <translet name="/wav"> <request> <parameters> <item name="text" mandatory="true"/> </parameters> </request> <headers> <item name="Content-Type">audio/wav</item> <item name="Content-Disposition">attachment; filename="output.wav"</item> </headers> <action bean="ttsApiV0" method="download"/> </translet> </aspectran>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy