Writing Dialogue and Sound into Adult Scripts
How to script spoken lines and sound cues for adult scenes so they carry through to synced audio when the storyboard renders on the Nureta API.
2 min read
Silence reads as a tech demo; sound reads as content. When you write an adult script, the beats carry not just action but dialogue and sound — and those cues survive into synced audio when the storyboard renders. This guide covers writing lines and sound into the script so the finished video lands.
Beats carry more than action
A scene's beat is the place to note spoken lines and audible detail, not just what the bodies do. 'She gasps and whispers his name', 'he groans as he pushes deeper' — the beat that names the sound is the beat that renders it. Write the audio into the action, not as an afterthought.
Scripting dialogue
- Keep lines short and in-scene — a whisper, a command, a name.
- Attribute clearly in multi-character scenes so the right voice speaks — see multi-character adult scripts.
- Match the register to the moment: build-up murmurs, explicit cries.
Sound cues beyond speech
Explicit scenes have a soundscape: breathing, moans, the sounds of contact. Naming them in the beat gives the render something to voice. On the video side, audio is generated with the frame — generate_audio is on by default — so what you scripted comes back as sound. See adding audio to NSFW video.
Carrying it to the render
When you hand the script's scenes to the video storyboard as segments, the beat text — dialogue and sound included — becomes each segment's script. So the audio you wrote is already in the render request. The mapping is in script to video handoff.
curl -s -X POST "$TOKENSTORE_URL/api/v3/contents/generations/tasks" \
-H "Authorization: Bearer sk-..." -H "Content-Type: application/json" \
-d '{ "model": "seahorse-480p", "ratio": "9:16", "generate_audio": true,
"content": [{ "type": "text", "text": "bedroom scene" }],
"segments": [
{ "script": "she pulls him close, breathless, and whispers stay", "duration_seconds": 8, "explicit": false },
{ "script": "explicit act, she cries out, wet contact sounds", "duration_seconds": 12, "explicit": true }
] }'Keep it natural
Over-scripting audio reads as stilted. A couple of well-placed lines and honest sound cues do more than a wall of dialogue. Write the moments that matter and let the rest be breath and contact.
Where to go next
Start from an idea with one-line idea to adult script, pace it with build-up vs explicit beats, and render it via script to video handoff. Field reference: script API docs.
Script a scene with sound →