Replace stdin/stdout JSON line protocol with a stdlib HTTP server
(ThreadingHTTPServer). Three endpoints: POST /speak, /chime, /preload.
All return {"status": "ok"} after audio is queued for playback.
TTS generation is serialized via a threading.Lock; concurrent chime/preload
requests are handled without waiting for generation.
Add examples/speak.mjs, chime.mjs, voice-clone.mjs using Node.js built-in
fetch (no libraries required, Node 18+).
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
462 B
JavaScript
18 lines
462 B
JavaScript
// Speak text via the Chatterbox TTS server.
|
|
// Usage: node speak.mjs "Hello world"
|
|
|
|
const PORT = process.env.TTS_PORT ?? '11500'
|
|
const text = process.argv[2] ?? 'Hello from Node.'
|
|
|
|
const res = await fetch(`http://localhost:${PORT}/speak`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ text }),
|
|
})
|
|
|
|
const data = await res.json()
|
|
if (data.status !== 'ok') {
|
|
console.error('error:', data.message)
|
|
process.exit(1)
|
|
}
|