forked from efforting.tech/tts-server
Single port (TTS_PORT) handles both the WS upgrade handshake and connections. Adds job queue, generation worker, playback events (queued/started/finished/aborted/error), and abort_current/abort_all commands. Fixes BrokenPipeError when pacat is killed mid-write. Updates all examples to use WebSocket; adds abort-demo.mjs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
600 B
JavaScript
24 lines
600 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 ws = new WebSocket(`ws://localhost:${PORT}`)
|
|
|
|
ws.addEventListener('open', () => {
|
|
ws.send(JSON.stringify({ type: 'speak', text }))
|
|
})
|
|
|
|
ws.addEventListener('message', ({ data }) => {
|
|
const msg = JSON.parse(data)
|
|
if (msg.event === 'finished' || msg.event === 'aborted' || msg.event === 'error') {
|
|
ws.close()
|
|
}
|
|
})
|
|
|
|
ws.addEventListener('error', (e) => {
|
|
console.error('error:', e.message)
|
|
process.exit(1)
|
|
})
|