- NanoBanana2
- AI video tools
- AI video tutorial
- AIGC workflow
Nano Banana 2 Practical Handbook: Official Guide + 21 AI Video Cases
I have been using Nano Banana 2 for AI video lately, and one pattern keeps getting in the way:
- Official docs are dense and hard to digest
- The community barely has structured, real-world case studies
- Tuning parameters and debugging crashes is mostly trial and error
So I spent two weeks building this Nano Banana 2 Practical Handbook, including:
- Official guide essentials (plain language, no jargon)
- Full settings for 21 real AI video cases
- My pitfall notes + parameter tuning cheat sheet
Sharing it all today—hope it helps anyone working on AI video.
Contents
- Official guide essentials (5-minute start)
- 21 case studies (with screenshots)
- Pitfalls and tuning tips
1. Official Guide Essentials
If you are new to Nano Banana 2, this section can save you roughly 80% of early mistakes.
1.1 Environment (one-line summary)
Python 3.10 + CUDA 11.8 + VRAM ≥ 8GB (16GB recommended)
🔴 Pitfall: Do not use Python 3.12 or newer—dependency conflicts are common.
1.2 Core parameters cheat sheet
| Parameter | Role | Recommended (beginners) | Notes |
|---|---|---|---|
| steps | Generation steps | 20-30 | More steps improve detail but roughly double VRAM use |
| cfg_scale | Prompt adherence | 7-9 | Below 7 drifts; above 12 tends to overfit |
| denoise | Denoise strength | 0.6-0.75 | Lower for image-to-video; higher for text-to-video |
| seed | Seed | -1 (random) | Lock the seed after a good result to reproduce it |
1.3 Three easy-to-miss official doc details
- Output format: Default is MP4; for transparent backgrounds set
--output_format webm - Frame rate cap: Max 30 fps—higher values are clamped automatically
- Batch processing: Use
--batch_inputinstead of looping calls—often 5× faster
2. 21 Practical Case Studies
Highlights from 21 runs I completed—each with key settings and result screenshots.
Case 1: Face consistency (medium shot → close-up)
Scenario: Same character from half-body shot to facial close-up
| Parameter | Setting |
|---|---|
| Model version | Nano Banana 2 v1.3 |
| steps | 28 |
| cfg_scale | 8.5 |
Key tip: Lock seed=420; lower denoise to 0.55 between the two frames

Case 2: Fast style transfer (live action → anime)
Scenario: Live-action input, Ghibli-style animated output
| Parameter | Setting |
|---|---|
| Model version | Nano Banana 2 v1.3 |
| steps | 35 |
| cfg_scale | 11 |
Key tip: Enable --style_transfer with reference weight 0.7

Case 3: Long video (30s coherent scene)
Scenario: One person walks three streets—outfit and body shape stay consistent
| Parameter | Setting |
|---|---|
| Model version | Nano Banana 2 v1.3 |
| steps | 25 |
| cfg_scale | 7.5 |
Key tip: Generate in three segments; blend joins with --blend_frames=5

The full handbook covers 18 more cases: lighting shifts, object removal, slow-motion interpolation, multi-person interaction, and more. Need the full parameter table? Comment below—I will keep updating this site.
3. Pitfalls and Tuning Tips
Lessons paid for with real time and GPU hours:
🔴 Pitfall 1: VRAM OOM with vague errors
undefined: Crashes mid-run; log only shows CUDA out of memory

Fix:
- Drop steps from 30 to 20
- Disable
--save_intermediate - For batches add
--batch_size=1
🔴 Pitfall 2: Warped generated faces
undefined: Silhouette looks right but facial features are misplaced
Fix:
- Raise cfg_scale from 7 to 10
- Add
symmetrical face, front viewto the prompt - For profile shots use
--face_fix
🟢 Quick tuning reference
| Goal | Adjust |
|---|---|
| Sharper output | ↑ steps (20→35), ↑ cfg_scale (7→9) |
| Closer to source (img2vid) | ↓ denoise (0.7→0.5) |
| More creative | ↑ denoise (0.7→0.85), set seed to -1 |
| Less flicker | ↑ temporal consistency --temporal_weight=0.8 |
| Faster generation | ↓ steps (30→15), enable --fast_mode |

Final thoughts
AI video is often held back not by the model but by scattered docs and high trial-and-error cost. This handbook bundles pitfalls, tuned parameters, and cases that actually worked. If it helps, share it with friends making AI video.
👉 Are you using Nano Banana 2 too? Run into anything odd? Join the conversation—I will keep adding cases and fixes to the handbook.