# Bytedance Dreamactor V2

> ByteDance | DreamActor | v2. Animate reference images using driving videos for motion transfer. Triggers: animation, dreamactor, bytedance, motion transfer, animate, video

- Skill: `awesome-genmedia/bytedance-dreamactor-v2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add awesome-genmedia/bytedance-dreamactor-v2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/awesome-genmedia/bytedance-dreamactor-v2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: awesome-genmedia (https://skillmd.com/u/awesome-genmedia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/awesome-genmedia/bytedance-dreamactor-v2

---


# ByteDance | DreamActor | v2

Animate reference images using driving template videos. Transfer motion, facial expressions, and gestures from a driving video to a reference image of people, animation characters, or pets.

## Quick Start

> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).

```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "bytedance-dreamactor-v2",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/portrait.jpg",
      "video_url": "https://example.com/dance-template.mp4",
      "cut_result_first_second_switch": true
    }
  }'
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| cut_result_first_second_switch | boolean | true | Whether to crop the first second of the output video (has a 1-second warmup). |
| image_url | string | | URL of the reference image to animate. Supports real people, animation, pets. |
| video_url | string | | URL of the driving template video providing motion, expressions, and gestures. |

## Examples

**Animate a portrait with dance motion:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "bytedance-dreamactor-v2",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/headshot.jpg",
      "video_url": "https://example.com/dance-video.mp4",
      "cut_result_first_second_switch": true
    }
  }'
```

**Animate an anime character:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "bytedance-dreamactor-v2",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/anime-character.png",
      "video_url": "https://example.com/talking-head.mp4",
      "cut_result_first_second_switch": false
    }
  }'
```

## Related Models

- [kling-v3-standard-motion-control](../kling-v3-standard-motion-control/) - Kling motion control
- [kling-v3-pro-motion-control](../kling-v3-pro-motion-control/) - Kling Pro motion control

## Documentation

- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)

