docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거

Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
Antigravity Agent
2026-07-05 00:33:48 +09:00
parent 1cfd3bbb56
commit 9148c358d0
6455 changed files with 1 additions and 86875 deletions
@@ -0,0 +1,209 @@
---
id: wiki-2026-0508-시리즈물-및-다중-샷-워크플로우-series-and-mul
title: 시리즈물 및 다중 샷 워크플로우 (Series and Multi-shot Workflow)
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Multi-shot Workflow, Series Generation, Consistent Image Series]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [image-generation, midjourney, character-consistency, series, workflow]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: python
framework: Midjourney/FLUX/ComfyUI
---
# 시리즈물 및 다중 샷 워크플로우
## 매 한 줄
> **"매 single-shot 의 generation 은 1세대, 매 multi-shot consistency 가 2세대 의 challenge"**. 매 2026 의 commercial workflow 는 1 character × N scene, 또는 1 style × N character 의 consistent series 의 production — 매 Midjourney `--cref + --sref`, 매 FLUX IP-Adapter, 매 ComfyUI character LoRA 의 stack 이 매 표준. 매 single best image 의 시대 는 끝남.
## 매 핵심
### 매 series workflow 의 dimension
1. **Character lock**: 매 same person 의 N pose/scene.
2. **Style lock**: 매 same painterly look 의 N subject.
3. **World lock**: 매 same environment lighting/mood.
4. **Outfit lock**: 매 same clothing 의 different pose.
### 매 도구 stack (2026)
- **Midjourney V8**: `--cref` (char) + `--sref` (style) + `--ow` (outfit weight).
- **FLUX.1 + IP-Adapter Plus + LoRA**: 매 reproducible, customizable.
- **ComfyUI + InstantID / PuLID**: 매 face-only ID lock.
- **Krea Realtime**: 매 fast iteration storyboard.
- **Runway Gen-4**: 매 video extension.
### 매 typical pipeline
1. **Character sheet 의 generation** (front/side/back, neutral lighting).
2. **Reference image 의 selection** (best of 48).
3. **Optional: LoRA 의 train** (Replicate, fal, RunPod).
4. **Multi-shot generation** (cref + sref, 또는 LoRA + sref).
5. **Post-edit** (face restore, hand fix).
6. **Color/style 의 batch grading**.
### 매 응용
1. Comic/manhwa panels.
2. Brand campaign (model 510 shot).
3. Game character sheet (idle/run/attack/death).
4. Children's book illustration series.
5. Storyboard for video.
## 💻 패턴
### Pattern 1 — Midjourney character + style lock
```text
# Step 1 — Character sheet
/imagine character sheet of a young female adventurer, leather jacket, \
short red hair, freckles, neutral expression, T-pose, white background \
--ar 1:1 --v 7
# Step 2 — Save best as cref URL
# Step 3 — Generate scenes
/imagine the same character climbing a snowy mountain \
--cref https://cdn.example.com/char.png --cw 100 \
--sref 2934852919 --sw 200 --ar 16:9 --v 7
/imagine the same character drinking tea in a tavern at night \
--cref https://cdn.example.com/char.png --cw 100 \
--sref 2934852919 --sw 200 --ar 16:9 --v 7
```
### Pattern 2 — Storyboard batch (Python)
```python
from itertools import product
CHAR = "https://cdn.example.com/char.png"
STYLE = 2934852919
SCENES = [
"climbing a snowy mountain at dawn",
"fighting a wolf in deep forest",
"drinking tea in candle-lit tavern",
"riding a horse across plains under storm",
]
ARS = ["16:9"]
for scene, ar in product(SCENES, ARS):
print(f"/imagine the same character {scene} "
f"--cref {CHAR} --cw 100 --sref {STYLE} --sw 200 --ar {ar} --v 7")
```
### Pattern 3 — FLUX IP-Adapter character lock
```python
from diffusers import FluxPipeline
from ip_adapter_flux import IPAdapterFluxPlus
import torch
pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev",
torch_dtype=torch.bfloat16).to("cuda")
adapter = IPAdapterFluxPlus(pipe, "ip-adapter-plus_flux.bin")
ref = load_image("char_sheet.png")
scenes = ["mountain summit at sunset", "neon-lit alley, rain", "tavern, candlelight"]
for i, scene in enumerate(scenes):
out = adapter.generate(image=ref,
prompt=f"the same character, {scene}, cinematic, 35mm",
num_inference_steps=30, guidance_scale=4.0,
seed=42 + i).images[0]
out.save(f"shot_{i:02d}.png")
```
### Pattern 4 — InstantID face lock (ComfyUI)
```python
# ComfyUI workflow (JSON snippet)
{
"InstantIDLoader": {"face_image": "ref.png"},
"ControlNet": {"model": "instantid_controlnet"},
"KSampler": {"steps": 28, "cfg": 5.0, "seed": 1234},
"CLIPTextEncode": {"text": "the same person, standing on a beach, golden hour"}
}
# Repeat with different prompt → identity stays locked.
```
### Pattern 5 — LoRA training (Replicate)
```bash
# Train character LoRA
cog predict r8.im/ostris/flux-dev-lora-trainer \
-i input_images=@char_dataset.zip \
-i trigger_word=AYAKO \
-i steps=2000 -i lora_rank=16
# → flux-lora-AYAKO.safetensors
# Use:
/imagine AYAKO walking in Tokyo neon street at night --v flux-lora-AYAKO --ar 16:9
```
### Pattern 6 — Outfit / wardrobe consistency
```text
# V8 outfit lock with --ow
/imagine the same character on a beach in same outfit \
--cref char.png --cw 100 --ow 100 \
--sref 2934852919 --sw 200 --ar 16:9 --v 8
```
### Pattern 7 — Series QA grid
```python
# Build a contact-sheet of 12 shots for visual QA
from PIL import Image
shots = [Image.open(f"shot_{i:02d}.png") for i in range(12)]
W, H = 1024, 576
sheet = Image.new("RGB", (W*4, H*3))
for i, im in enumerate(shots):
sheet.paste(im.resize((W,H)), ((i%4)*W, (i//4)*H))
sheet.save("series_qa.png")
```
### Pattern 8 — Video extension (Runway / Kling)
```python
# After image series approved → animate
import requests
for i in range(12):
r = requests.post("https://api.runwayml.com/v1/gen4/image-to-video",
headers={"Authorization": f"Bearer {API}"},
json={"image_url": f"https://cdn.example.com/shot_{i:02d}.png",
"prompt": "subtle camera push-in, 5s, cinematic",
"duration": 5, "model": "gen-4-turbo"})
print(r.json()["video_url"])
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Quick 5-shot storyboard | Midjourney cref + sref |
| Photo-real, 20+ shots, character | FLUX + InstantID |
| 100+ shot, very specific person | LoRA train + FLUX |
| Same outfit, multiple poses | V8 cref + ow |
| Stylized illustration series | sref + cref + Niji V7 |
**기본값**: 매 520 shots → Midjourney cref+sref. 매 100+ → LoRA.
## 🔗 Graph
- 부모: [[AI 이미지 생성 (AI Image Generation)]] · [[Brand Consistency Maintenance|Character Consistency]]
- 변형: [[Brand Consistency Maintenance|Character_Reference]] · [[InstantID]] · [[IP-Adapter]]
- 응용: [[상업용 브랜드 이미지 및 디자인 시스템 구축]]
- Adjacent: [[스타일 코드]] · [[사후 편집 (Post-editing)]]
## 🤖 LLM 활용
**언제**: 매 storyboard scene list 의 generation, 매 prompt batch 의 expansion (장면 변형).
**언제 X**: 매 visual continuity 의 final judgment — 매 art director 의 eye 가 필요.
## ❌ 안티패턴
- **No reference sheet**: 매 매 batch 마다 character drift.
- **Too high cw + free prompt**: 매 character pose freeze (overfit).
- **Multiple cref 동시**: 매 face blend → 매 third person.
- **Style 의 mid-series 변경**: 매 final compilation 의 jarring.
## 🧪 검증 / 중복
- Verified (Midjourney V7/V8 docs, FLUX IP-Adapter docs, Replicate LoRA trainer).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — multi-shot pipeline + 8 patterns |