> ## Documentation Index
> Fetch the complete documentation index at: https://tryunsora.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Generate media

> Create images, video, music, voiceovers, thumbnails, and clips from the terminal with the Unsora CLI — one command per generation type.

Every generation command follows the same pattern: `create` queues the job and
polls until done, `list` shows past generations, `status <id>` checks one job,
`delete <id>` removes it.

## Images

```bash theme={null}
unsora image create --prompt "isometric 3d icon of a rocket" \
  --model nano-banana-2 --ratio 1:1

# With reference images
unsora image create -p "same character, waving" --ref https://.../char.png
```

Models: `nano-banana-2` (default), `nano-banana-pro`, `seedream-v5-lite`,
`gpt-image-1.5`, `gpt-image-2`.

## Video

```bash theme={null}
unsora video create --prompt "cinematic drone shot over mountains at sunset"
```

The public API currently exposes **Seedance 2.0**; Kling, Veo, Sora, and Wan
are available in the [web app](https://app.tryunsora.com).

## Music

```bash theme={null}
# Song (lyrics required for song models)
unsora music create --prompt "r&b, slow, passionate, male vocal" \
  --lyrics "[Verse] ..." --model mureka-9

# Instrumental BGM
unsora music create --prompt "calm lo-fi study beat" --model mureka-7.5
```

## Voiceovers

```bash theme={null}
# Browse the 20 Eleven v3 voices (with preview URLs)
unsora voiceover voices

# Generate speech (6 credits per started 1,000 characters)
unsora voiceover create --text "Welcome to Unsora." --voice Brian
```

Use `<#1.5#>` between words in the text to pause for 1.5 seconds.

## Thumbnails & influencer portraits

```bash theme={null}
# YouTube-style 16:9 thumbnails, multiple variations
unsora thumbnail create --prompt "shocked face, red arrow, MrBeast style" \
  --variations 3

# AI influencer portraits
unsora influencer create --prompt "young woman, coffee shop" \
  --style golden_hour --angle portrait --count 2
```

## Clipping

```bash theme={null}
# Auto-detect the most viral clips
unsora clip create --url "https://www.youtube.com/watch?v=..."

# Check progress / fetch results later
unsora clip status <clipping-id>
```

Accepts YouTube links or direct video file URLs. See the
[clipping API reference](/docs/api-reference/clippings/create) for ratios, caption
styles, and Find Moments mode — all exposed as flags on `unsora clip create`
(run `unsora clip create --help`).
