Bytedance Seedance V1.5 Pro Video Extend
Playground
Try it on WaveSpeedAI!Seedance 1.5 Pro Video-Extend turns short video clips into longer videos with natural motion continuation, stable aesthetics, and upscaled output. It supports 4–12s duration control, multiple aspect ratios/resolutions, and seed-reproducible results—ideal for extending ad creatives and short-drama shots. Built for stable production use with a ready-to-use REST API, no cold starts, and predictable pricing.
Features
Seedance V1.5 Pro (Video Extend) extends an existing video into a longer clip while preserving motion continuity, subject identity, and scene coherence. Use a prompt to guide what happens next, set duration and resolution, and optionally enable audio generation for the extended segment.
Why it stands out
- Smooth continuation that matches the original clip’s rhythm and aesthetics
- Prompt-guided extension to steer action, mood, and camera behavior
- Resolution options with transparent multipliers (480p / 720p)
- Optional audio generation with clear pricing impact
Key Capabilities
-
Natural motion continuation Extends movement with consistent pacing and visual logic.
-
Scene coherence preservation Maintains lighting, framing, and subject consistency across the extension.
-
Prompt-guided direction Describe the next action and constraints without rebuilding the scene.
-
Optional audio generation Enable or disable audio generation depending on your workflow needs.
Parametrs
| Parameter | Description |
|---|---|
| video* | Input video (public URL or uploaded file reference, depending on client). |
| prompt* | Describe what should happen next and what must remain consistent. |
| duration | Output duration in seconds (commonly used values: 4–12s; exact allowed values depend on endpoint validation). |
| resolution | Output resolution: 720p or 480p. |
| generate_audio | Whether to generate audio for the output video (true/false). |
| camera_fixed | Whether to fix the camera position (true/false). |
| seed | Random seed (-1 for random; set a fixed integer for reproducible results). |
Prompt Tips
Write prompts like a continuation brief:
- Describe what happens next (action + timing)
- Add motion intensity (subtle / smooth / dynamic)
- Specify camera behavior if needed (fixed / slow pan / gentle zoom)
- Add constraints: “keep the same character, outfit, lighting, framing”
Example prompts:
- Continue the scene with the subject holding the glowing ball, the light intensifies near the end, keep the same camera angle and lighting style.
- Extend with subtle hand movement and a slow push-in, keep the subject centered and the environment unchanged.
Pricing
Reference pricing (generate_audio = true)
| Resolution | Price per second | Example (5s) | Example (10s) |
|---|---|---|---|
| 720p | $0.052 | $0.26 | $0.52 |
| 480p | $0.024 | $0.12 | $0.24 |
Reference pricing (generate_audio = false)
| Resolution | Price per second | Example (5s) | Example (10s) |
|---|---|---|---|
| 720p | $0.026 | $0.13 | $0.26 |
| 480p | $0.012 | $0.06 | $0.12 |
Best Practices
- Use clean input videos (clear subject, stable exposure, minimal compression artifacts).
- Keep prompts specific but short, and explicitly state what must stay the same.
- Start with 5 seconds to validate motion and framing before extending longer.
- Use a fixed seed when iterating to compare small prompt changes.
Use Cases
- Ad creative extension (turn short shots into longer deliverables)
- Social content variations (longer cuts from a base clip)
- Storytelling continuity (extend key moments with controlled motion)
- Marketing edits (extend hero scenes with stable aesthetics)
Notes
- The input video must be accessible to the runtime (public URL or valid uploaded reference).
- If motion drifts or the scene changes too much, add stronger constraints: “keep camera fixed”, “same outfit and lighting”, “do not change background”.
- Supported durations and modes can vary by deployment; rely on the endpoint UI/validator for exact allowed values.
Related Models
- Seedance V1.5 Pro Video Extend Fast — Faster processing with higher-resolution options for rapid iteration and production outputs.
- Seedance V1.5 Pro (Text-to-Video) — Generate new videos from text prompts for end-to-end creation.
- Seedance V1.5 Pro (Image-to-Video) — Animate still images into videos with guided motion and stable aesthetics.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
set -euo pipefail
export WAVESPEED_API_KEY="your-api-key"
REQUEST_BODY=$(cat <<'JSON'
{
"prompt": "A cinematic ocean wave at sunrise, highly detailed",
"video": "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4",
"duration": 5,
"resolution": "720p",
"generate_audio": true,
"camera_fixed": false,
"seed": -1
}
JSON
)
# 1. Submit the prediction.
SUBMIT_RESPONSE=$(curl --silent --show-error --fail-with-body \
-X POST "https://api.wavespeed.ai/api/v3/bytedance/seedance-v1.5-pro/video-extend" \
-H "Authorization: Bearer ${WAVESPEED_API_KEY}" \
-H "Content-Type: application/json" \
-d "${REQUEST_BODY}")
TASK=$(printf '%s' "${SUBMIT_RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
PREDICTION_ID=$(printf '%s' "${TASK}" | jq -r '.id // empty')
if [ -z "${PREDICTION_ID}" ]; then
printf 'Submission response did not contain a prediction id
' >&2
exit 1
fi
RESULT_URL=$(printf '%s' "${TASK}" | jq -r '.urls.get // empty')
if [ -z "${RESULT_URL}" ]; then RESULT_URL="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"; fi
# 2. Poll until the prediction finishes.
while true; do
RESPONSE=$(curl --silent --show-error --fail-with-body \
"${RESULT_URL}" \
-H "Authorization: Bearer ${WAVESPEED_API_KEY}")
RESULT=$(printf '%s' "${RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
STATUS=$(printf '%s' "${RESULT}" | jq -r '.status // empty')
case "${STATUS}" in
completed) printf '%s\n' "${RESULT}" | jq '.outputs'; break ;;
failed|cancelled|timeout) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
created|processing) sleep 2 ;;
*) printf 'Unexpected status: %s
' "${STATUS}" >&2; exit 1 ;;
esac
doneParameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | The positive prompt for the generation. | |
| video | string | Yes | - | The video URL to extend. | |
| duration | integer | No | 5 | 4 ~ 12 | The duration of the generated media in seconds. |
| resolution | string | No | 720p | 480p, 720p, 1080p | Video resolution. |
| generate_audio | boolean | No | true | - | Whether to generate audio. |
| camera_fixed | boolean | No | false | - | Whether to fix the camera position. |
| seed | integer | No | -1 | - | The random seed to use for the generation. -1 means a random seed will be used. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Output values, usually URL strings; some models return text strings or structured result objects (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction |
| data.model | string | Model ID used for the prediction |
| data.outputs | array<string | object> | Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model. |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to poll for the prediction result |
| data.status | string | Status: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |