Loading...
Loading...
Manga Drama Generator - A comic-style short drama generation tool based on Seedance. It supports automatically generating manga drama storyboard scripts and producing videos based on the protagonist's image. It is suitable for creating comic-style short videos, character stories, animated short films, etc. Use this skill when users want to generate comic-style short video dramas, character stories or manga dramas.
npx skill4agent add freestylefly/canghe-skills manga-dramaARK_API_KEYcp .canghe-skills/.env.example .canghe-skills/.env.canghe-skills/.envARK_API_KEY=your-actual-api-key-hereexport ARK_API_KEY="your-api-key"process.env.canghe-skills/.env~/.canghe-skills/.envcd ~/.openclaw/workspace/skills/manga-drama
python3 scripts/manga_drama.py generate \
--image /path/to/character.png \
--theme "校园日常" \
--scenes 3 \
--send-feishu# Create script template
python3 scripts/manga_drama.py create-script \
--output my_drama.json \
--title "我的漫剧" \
--character "双马尾女孩" \
--num-scenes 4
# Generate after editing the script file
python3 scripts/manga_drama.py from-script \
--script my_drama.json \
--image /path/to/character.png \
--send-feishu| Storyboard Type | Name | Description |
|---|---|---|
| introduction | Protagonist Appearance | Introduce the protagonist and display character features |
| action | Action Scene | The protagonist performs a certain action |
| emotion | Emotional Expression | Express a certain emotion |
| interaction | Interaction Scene | Interact with the environment or other elements |
| ending | Ending Freeze Frame | Manga drama ending, freeze the frame |
{
"title": "漫剧标题",
"character": "主角描述",
"style": "漫画风格",
"total_scenes": 3,
"scenes": [
{
"scene_number": 1,
"type": "introduction",
"name": "主角登场",
"prompt": "双马尾女孩站在画面中央,微笑看向镜头,漫画风格...",
"duration": 5,
"ratio": "9:16",
"resolution": "1080p"
}
]
}| Parameter | Required | Description |
|---|---|---|
| ✅ | Protagonist image path |
| ✅ | Manga drama theme/plot description |
| ❌ | Number of storyboards (default 3) |
| ❌ | Output directory (default ~/Desktop) |
| ❌ | Send to Feishu |
| Parameter | Required | Description |
|---|---|---|
| ✅ | Script file path |
| ✅ | Protagonist image path |
| ❌ | Send to Feishu |
| Parameter | Required | Description |
|---|---|---|
| ✅ | Output script file path |
| ❌ | Manga drama title |
| ❌ | Protagonist description |
| ❌ | Number of storyboards |
python3 scripts/manga_drama.py generate \
--image ~/Desktop/girl_character.png \
--theme "校园日常" \
--scenes 3 \
--send-feishu# Create script
python3 scripts/manga_drama.py create-script \
--output spring_festival.json \
--title "春节团圆" \
--character "白发奶奶" \
--num-scenes 5
# Edit the spring_festival.json file
# Then generate
python3 scripts/manga_drama.py from-script \
--script spring_festival.json \
--image ~/Desktop/grandma.png \
--send-feishu1. Analyze protagonist image → Extract character features
2. According to theme → Generate storyboard script
3. Each storyboard → Call Seedance image-to-video
4. Optional → Send to Feishu~/Desktop/drama_我的漫剧/
├── drama_script_xxx.json # Script file
├── scene_1_introduction.mp4 # Storyboard 1
├── scene_2_action.mp4 # Storyboard 2
├── scene_3_emotion.mp4 # Storyboard 3
└── ...prompt{
"prompt": "{character}在樱花树下读书,花瓣飘落,漫画风格,温馨治愈..."
}for script in scripts/*.json; do
python3 scripts/manga_drama.py from-script \
--script "$script" \
--image ~/Desktop/character.png
done