Loading...
Loading...
Manga-style video generator - specifically designed to produce animated videos in manga styles such as Japanese healing style, Chinese ink wash style, and American cartoon style. It comes with 8 built-in manga style templates, supports image-to-video generation, and creates high-quality manga animations with one click. Use this skill when you need to generate videos in manga, animation, or hand-drawn styles.
npx skill4agent add freestylefly/canghe-skills manga-style-video| Style Code | Name | Features |
|---|---|---|
| Japanese Healing Style | Ghibli style, hand-painted watercolor, warm and healing |
| Ghibli Style | Studio Ghibli, Hayao Miyazaki animation style |
| Chinese Ink Wash Style | Traditional Chinese ink painting, elegant poetic style, fine brushwork lines |
| American Cartoon | Disney Pixar, 3D cartoon, bright colors |
| Pencil Sketch | Hand-drawn lines, black white gray, artistic sense |
| Watercolor Hand-drawn | Transparent texture, color blending, artistic illustration |
| Japanese Manga | Black and white screentone, speed lines, dynamic composition |
| Chibi Cute Style | Big head proportion, cute and adorable, rounded lines |
ARK_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-style-video
python3 scripts/manga_style_video.py "Girl reading under cherry blossom tree"# Chinese ink wash style
python3 scripts/manga_style_video.py "Landscape artistic conception" --style chinese
# American cartoon style
python3 scripts/manga_style_video.py "Cute small animals" --style cartoon
# Ghibli style
python3 scripts/manga_style_video.py "Rural scenery" --style ghibli# Use character image as reference
python3 scripts/manga_style_video.py "Grandma making dumplings" \
--style japanese \
--image ~/Desktop/character.pngpython3 scripts/manga_style_video.py "Spring Festival reunion scene" \
--style japanese \
--image character.png \
--duration 10 \
--ratio 9:16 \
--resolution 1080p \
--output ~/Desktop/my_video.mp4| Parameter | Required | Default Value | Description |
|---|---|---|---|
| ✅ | - | Video content description |
| ❌ | japanese | Manga style |
| ❌ | - | Reference image path |
| ❌ | 10 | Duration (seconds) |
| ❌ | 9:16 | Aspect ratio (16:9/9:16/1:1/4:3) |
| ❌ | 1080p | Resolution |
| ❌ | - | Output path |
| ❌ | false | Do not wait for completion |
python3 scripts/manga_style_video.py \
"White-haired grandma busy in the kitchen, sunlight shining through the window" \
--style japanese \
--duration 8python3 scripts/manga_style_video.py \
"Ancient woman playing the piano by the lotus pond, lotus flowers in full bloom" \
--style chinese \
--ratio 16:9# Storyboard 1: Character appearance
python3 scripts/manga_style_video.py \
"Double ponytail girl smiling at school gate" \
--style chibi \
--image girl.png \
--output scene1.mp4
# Storyboard 2: Action scene
python3 scripts/manga_style_video.py \
"Girl studying seriously in classroom" \
--style chibi \
--image girl.png \
--output scene2.mp4python3 scripts/manga_style_video.py \
"Kitten rolling on the grass, super cute" \
--style chibi \
--duration 5python3 scripts/manga_style_video.py --list-styles🎨 Available manga styles:
japanese - Japanese Healing Style
ghibli - Ghibli Style
chinese - Chinese Ink Wash Style
cartoon - American Cartoon
sketch - Pencil Sketch
watercolor - Watercolor Hand-drawn
manga_comic - Japanese Manga
chibi - Chibi Cute StyleJapanese animation style, Studio Ghibli style, hand-painted watercolor texture, soft pastel tones,
simple and smooth lines, warm and healing, delicate background depiction, Hayao Miyazaki styleTraditional Chinese ink painting style, Chinese style animation, elegant tones, landscape artistic conception,
fine brushwork lines, ancient style hand-painted, poetic and aestheticChibi big head proportion, cute and adorable style, rounded lines, bright colors,
cartoon rendering, healing expressionPOST /api/v3/contents/generations/tasksdoubao-seedance-1-5-pro-2512151. Select manga style → Get corresponding prompt template
2. Combine user description + style prompt
3. Call Seedance API to generate video
4. Wait for generation to complete → Download video~/Desktop/manga_{style}_{timestamp}.mp4--style--duration| Normal Prompt | Manga Style Prompt (automatically generated by this skill) |
|---|---|
| "Girl under cherry blossom tree" | "Girl under cherry blossom tree, Japanese animation style, Studio Ghibli style, hand-painted watercolor texture, soft pastel tones, simple and smooth lines, warm and healing" |
# Create script
for i in 1 2 3; do
python3 scripts/manga_style_video.py \
"Scene description for storyboard $i" \
--style japanese \
--image character.png \
--output scene_$i.mp4 &
done
waitseedance-video-generation