Orvyn streams lip-synced digital human avatars over WebSocket & MSE. Integrate ultra-low latency voice dialogue and fluid neural video into your native products.
Orvyn decouples voice intelligence, neural avatar rendering, and web delivery into a single unified API pipeline.
The visitor speaks into their microphone. Audio is streamed over WebSocket directly to the Orvyn Worker session bridge.
Orvyn routes user speech through configured voice engines and LLM providers to generate intelligent dialogue responses.
The neural GPU renderer returns lip-synced avatar frames at 25 FPS, streamed back seamlessly to the browser MediaSource.
Replace static forms and text bots with lifelike avatar interaction across your user journey.
Empathetic, real-time avatar support agents that resolve complex inquiries with active listening and instant visual rapport.
Interactive avatar instructors that guide users through platform walk-throughs, answering questions dynamically in natural voice.
Convert prospects with face-to-face avatar sales representatives tailored to demonstrate product features on-demand.
Initiate avatar sessions with a single API call, then stream media over standard WebSocket connections.
curl -X POST https://api.orvyn.live/v1/sessions \
-H "Authorization: Bearer avtr_live_..." \
-H "Content-Type: application/json" \
-d '{
"provider_type": "elevenlabs",
"avatar_config": {
"avatar_id": "arnold",
"bg_id": "bluegradient"
},
"transport": "websocket_fmp4"
}'
// Response:
{
"session_id": "sess_89f2a412",
"client_token": "hmac_tok_90a1b2...",
"transport": "websocket_fmp4"
}