!752
static S html(S subUri, Map params) {
S voice = or(params.get("voice"), "Alex");
S text = or(params.get("text"), "Hallöchen");
S url = getSoundURLCereproc(text, voice);
ret p(htmlencode(text + " (" + voice + ")"))
+ tag("audio",
tag("source", "", "src", url, "type", "audio/mpeg"),
"controls", "1",
"autoplay", "1");
}