File size: 24,115 Bytes
ef4c36f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 |
# PRD: Personal Video Caption Studio
## Next.js App (Private Use)
### Version: 1.0 | Date: July 5, 2026
---
## 1. WHAT THIS IS
A personal web app that burns animated, word-by-word captions onto videos.
You upload a video + text (or SRT), style the captions, preview, and download the result.
**Inspiration**: The viral TikTok/Reels caption style β bold text, black stroke, bounce animation.
---
## 2. HOW IT WORKS (USER FLOW)
```
Upload Video βββΊ Paste Text / Upload SRT βββΊ Style Captions βββΊ Preview βββΊ Export MP4
β β β β β
βΌ βΌ βΌ βΌ βΌ
Drag & drop Type or paste Pick font, Play with Download
or file picker words manually color, size, captions to disk
or import .srt position, burned in
animation speed
```
---
## 3. FEATURES
### 3.1 Must-Have (MVP)
| # | Feature | How It Works |
|---|---------|-------------|
| 1 | **Upload video** | Drag & drop or click. Accept MP4, MOV, WebM. Max 500MB, 5 min. |
| 2 | **Add captions** | Textarea: type/paste words. Or upload `.srt` file. |
| 3 | **Auto-sync timing** | If no SRT: split text by words, estimate ~200ms per word + pauses. |
| 4 | **Style captions** | Font, size, fill color, stroke color, stroke width, shadow. |
| 5 | **Position** | Top/center/bottom + fine-tune Y offset. |
| 6 | **Preview** | Play video with real-time caption overlay in browser. |
| 7 | **Export** | Server-side FFmpeg renders video + captions β MP4 download. |
### 3.2 Nice-to-Have (v2)
| # | Feature | Notes |
|---|---------|-------|
| 8 | **Upload audio** | Separate voiceover track |
| 9 | **Auto-transcribe** | Whisper API (OpenAI) β costs money, optional |
| 10 | **Timeline editor** | Drag word timings visually |
| 11 | **Presets** | Save style combos ("Viral Yellow", "Minimal White", etc.) |
| 12 | **Batch export** | Queue multiple videos |
---
## 4. TECH STACK
```
Frontend (Browser)
βββ Next.js 15 (App Router)
βββ React 19 + TypeScript
βββ Tailwind CSS 4
βββ shadcn/ui (components)
βββ Framer Motion (caption animations in preview)
βββ React Player / native <video> (video playback)
Backend (Next.js API Routes + Server Actions)
βββ FFmpeg (ffmepg-static or system install)
βββ Canvas API / node-canvas (render caption frames)
βββ Sharp (image processing, optional)
βββ tmp (temp file cleanup)
Storage
βββ Local filesystem (uploads + exports in /tmp or ./storage)
βββ No database needed β state is ephemeral
```
---
## 5. DATA MODELS
```typescript
// types/index.ts
interface Project {
id: string; // uuid
videoPath: string; // /tmp/uploads/abc123.mp4
videoMeta: {
width: number;
height: number;
duration: number; // seconds
fps: number;
};
captions: Caption[];
style: CaptionStyle;
layout: CaptionLayout;
status: 'draft' | 'rendering' | 'done' | 'error';
exportPath?: string; // /tmp/exports/abc123_captioned.mp4
createdAt: Date;
}
interface Caption {
id: string;
text: string; // single word or short phrase
startMs: number; // when to appear
endMs: number; // when to disappear/dim
}
interface CaptionStyle {
fontFamily: string; // "Impact", "Oswald", "Anton", etc.
fontSize: number; // px, relative to video height
fillColor: string; // #FFD700
strokeColor: string; // #000000
strokeWidth: number; // px
highlightColor?: string; // #FFFFFF top highlight
shadow: {
color: string;
blur: number;
offsetX: number;
offsetY: number;
};
uppercase: boolean;
letterSpacing: number;
}
interface CaptionLayout {
position: 'top' | 'center' | 'bottom';
yOffset: number; // px from position anchor
maxWidthPercent: number; // 0.9 = 90% of video width
maxLines: number; // how many lines visible at once
}
```
---
## 6. PAGE BREAKDOWN
### Page 1: `/` β Upload
```
βββββββββββββββββββββββββββββββββββββββββββ
β π¬ Caption Studio [Settings] β
βββββββββββββββββββββββββββββββββββββββββββ€
β β
β βββββββββββββββββββ β
β β β β
β β DROP VIDEO β β
β β HERE β β
β β or click β β
β β β β
β βββββββββββββββββββ β
β β
β MP4, MOV, WebM β’ Max 500MB β’ 5 min β
β β
βββββββββββββββββββββββββββββββββββββββββββ
```
**Actions:**
- Drag & drop video β upload to `/tmp/uploads/{uuid}.mp4`
- Extract metadata via FFmpeg: `ffprobe -v error -select_streams v:0 -show_entries stream=width,height,r_frame_rate,duration`
- Redirect to `/editor?id={uuid}`
---
### Page 2: `/editor` β Captions + Style
```
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β β Back Caption Studio [Export] β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β βββββββββββββββββββββββββββ βββββββββββββββββββββββββββ β
β β β β CAPTION TEXT β β
β β βββββββββββββββ β β βββββββββββββββββββ β β
β β β β β β β Type or paste β β β
β β β VIDEO β β β β your captions β β β
β β β PREVIEW β β β β here... β β β
β β β β β β β β β β
β β β [captions β β β β Or upload .srt β β β
β β β overlay] β β β β β β β
β β β β β β βββββββββββββββββββ β β
β β βββββββββββββββ β β β β
β β βΆοΈ βοΈ βΆβΆ βΈοΈ β β [Auto-sync] [Clear] β β
β β β β β β
β βββββββββββββββββββββββββββ β STYLE β β
β β βββββββββββββββββββββ β β
β β Font: [Impact βΌ] β β
β β Size: [ββββββββ] 48px β β
β β Fill: [π¨] #FFD700 β β
β β Stroke: [β¬] #000 4px β β
β β Highlight: [β¬] #FFF β β
β β Shadow: [β] blur:8 β β
β β Uppercase: [β] β β
β β β β
β β POSITION β β
β β [Top] [Center] [Bottom]β β
β β Y-offset: [βββββββ] 0 β β
β β β β
β β ANIMATION β β
β β Speed: [βββββββ] 1.0x β β
β β Style: [Bounce βΌ] β β
β β β β
β β [πΎ Save Preset] β β
β βββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
**Left Panel β Preview:**
- `<video>` element playing uploaded video
- Overlay div with Framer Motion animated captions
- Captions rendered as absolutely-positioned `<span>` elements
- Animation mimics final FFmpeg output (for WYSIWYG)
**Right Panel β Editor:**
- **Text input**: `<textarea>` for raw text
- **Auto-sync button**: Split text by whitespace β assign timings:
```
wordDuration = 180ms + (chars * 40ms)
gapBetweenWords = 60ms
```
- **SRT upload**: Parse `HH:MM:SS,mmm --> HH:MM:SS,mmm` format
- **Style controls**: Color pickers, sliders, toggles
- **Presets**: JSON blobs saved to `localStorage`
**Caption Preview Animation (Framer Motion):**
```tsx
// components/CaptionWord.tsx
<motion.span
initial={{ scale: 0.5, opacity: 0, y: 20 }}
animate={{
scale: isActive ? [1, 1.05, 1] : isPast ? 0.95 : 1,
opacity: isPast ? 0.5 : 1,
y: 0
}}
transition={{
type: "spring",
stiffness: 400,
damping: 15,
duration: 0.3
}}
>
{word.text.toUpperCase()}
</motion.span>
```
---
### Page 3: `/export` β Render & Download
```
βββββββββββββββββββββββββββββββββββββββββββ
β β Back Export Video β
βββββββββββββββββββββββββββββββββββββββββββ€
β β
β βββββββββββββββββββ β
β β β β
β β PREVIEW β β
β β (low-res) β β
β β β β
β βββββββββββββββββββ β
β β
β Settings: β
β Resolution: [Original βΌ] 1080x1920 β
β Quality: [High βΌ] β
β Format: [MP4 (H.264) βΌ] β
β β
β βββββββββββββββββββββββββββββββββββ β
β β π¬ Rendering... β β
β β ββββββββββββββββββ 67% β β
β β ~12 seconds remaining β β
β β β β
β β [Cancel] β β
β βββββββββββββββββββββββββββββββββββ β
β β
β [π₯ Download MP4] β
β β
βββββββββββββββββββββββββββββββββββββββββββ
```
---
## 7. SERVER-SIDE RENDERING PIPELINE
### The Big Picture
```
Browser Server (Next.js API)
β β
βββ POST /api/upload ββββββββββββββββββββΊβ
β (multipart video) β
βββ 200 { id, meta } βββββββββββββββββββββ
β β
βββ POST /api/render ββββββββββββββββββββΊβ
β { id, captions, style, layout } β
β β
β Server does: β
β 1. Extract frames (FFmpeg) β
β 2. Render captions on each frame β
β (Canvas 2D / node-canvas) β
β 3. Encode frames + audio β MP4 β
β (FFmpeg) β
β β
βββ 200 { downloadUrl } βββββββββββββββββ
β β
βββ GET /api/download/{id} ββββββββββββββΊβ
βββ Stream MP4 βββββββββββββββββββββββββββ
```
### Step-by-Step Render Process
```typescript
// app/api/render/route.ts
import { NextRequest, NextResponse } from 'next/server';
import { exec } from 'child_process';
import { promisify } from 'util';
import { createCanvas, loadImage, registerFont } from 'canvas';
import fs from 'fs/promises';
import path from 'path';
const execAsync = promisify(exec);
export async function POST(req: NextRequest) {
const { id, captions, style, layout } = await req.json();
const uploadDir = `/tmp/uploads/${id}`;
const renderDir = `/tmp/renders/${id}`;
const outputPath = `/tmp/exports/${id}_captioned.mp4`;
await fs.mkdir(renderDir, { recursive: true });
// ββ STEP 1: Extract frames βββββββββββββββββββββββββββββ
// Extract at video FPS, e.g. 30fps
await execAsync(`
ffmpeg -i ${uploadDir}/video.mp4
-vf "fps=30,scale=1080:-1:flags=lanczos"
-q:v 2
${renderDir}/frame_%06d.png
`);
const frames = await fs.readdir(renderDir);
const fps = 30;
const frameDurationMs = 1000 / fps;
// ββ STEP 2: Render captions on each frame ββββββββββββββ
for (let i = 0; i < frames.length; i++) {
const currentMs = i * frameDurationMs;
const framePath = path.join(renderDir, frames[i]);
// Load frame
const img = await loadImage(framePath);
const canvas = createCanvas(img.width, img.height);
const ctx = canvas.getContext('2d');
// Draw original frame
ctx.drawImage(img, 0, 0);
// Determine which captions are visible
const visibleCaptions = captions.filter(c =>
c.startMs <= currentMs && c.endMs + 200 >= currentMs
);
// Render each visible caption word
for (const cap of visibleCaptions) {
const isActive = currentMs >= cap.startMs && currentMs < cap.endMs;
const isPast = currentMs >= cap.endMs;
renderCaptionWord(ctx, cap, isActive, isPast, style, layout, img.width, img.height);
}
// Save rendered frame
const buffer = canvas.toBuffer('image/png');
await fs.writeFile(framePath, buffer);
}
// ββ STEP 3: Encode final video βββββββββββββββββββββββββ
await execAsync(`
ffmpeg -i ${uploadDir}/video.mp4 -i ${renderDir}/frame_%06d.png
-filter_complex "[0:a]acopy[audio];[1:v]format=yuv420p[video]"
-map "[video]" -map "[audio]"
-c:v libx264 -preset fast -crf 23
-c:a aac -b:a 128k
-movflags +faststart
-y ${outputPath}
`);
// Cleanup temp frames
await fs.rm(renderDir, { recursive: true });
return NextResponse.json({
downloadUrl: `/api/download/${id}`,
filename: `captioned_${id}.mp4`
});
}
// Helper: render single word with stroke, fill, shadow
function renderCaptionWord(
ctx: CanvasRenderingContext2D,
caption: Caption,
isActive: boolean,
isPast: boolean,
style: CaptionStyle,
layout: CaptionLayout,
videoW: number,
videoH: number
) {
const text = style.uppercase ? caption.text.toUpperCase() : caption.text;
const fontSize = (videoH * style.fontSize) / 1080; // scale relative to 1080p
ctx.font = `900 ${fontSize}px "${style.fontFamily}"`;
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
// Calculate position
const x = videoW / 2;
let y = videoH * 0.85; // default bottom
if (layout.position === 'top') y = videoH * 0.15;
if (layout.position === 'center') y = videoH * 0.5;
y += layout.yOffset;
// Animation state
let scale = 1;
let opacity = 1;
if (isActive) {
// Bounce in effect β calculate based on time into word
const progress = Math.min(1, (Date.now() - caption.startMs) / 300);
scale = 0.5 + (0.5 * easeOutElastic(progress));
if (progress > 0.8) scale = 1 + 0.05 * Math.sin(Date.now() / 150);
} else if (isPast) {
scale = 0.95;
opacity = 0.5;
}
ctx.save();
ctx.translate(x, y);
ctx.scale(scale, scale);
ctx.globalAlpha = opacity;
// Shadow
if (style.shadow) {
ctx.shadowColor = style.shadow.color;
ctx.shadowBlur = style.shadow.blur;
ctx.shadowOffsetX = style.shadow.offsetX;
ctx.shadowOffsetY = style.shadow.offsetY;
}
// Stroke (outline)
ctx.strokeStyle = style.strokeColor;
ctx.lineWidth = style.strokeWidth * (videoH / 1080);
ctx.lineJoin = 'round';
ctx.strokeText(text, 0, 0);
// Fill
ctx.fillStyle = style.fillColor;
ctx.fillText(text, 0, 0);
// Highlight (top edge)
if (style.highlightColor) {
ctx.fillStyle = style.highlightColor;
ctx.globalAlpha = opacity * 0.3;
ctx.fillText(text, 0, -2);
}
ctx.restore();
}
// Elastic ease-out for bounce
function easeOutElastic(x: number): number {
const c4 = (2 * Math.PI) / 3;
return x === 0 ? 0 : x === 1 ? 1 : Math.pow(2, -10 * x) * Math.sin((x * 10 - 0.75) * c4) + 1;
}
```
---
## 8. PROJECT STRUCTURE
```
my-caption-app/
βββ app/
β βββ page.tsx # Upload page
β βββ editor/
β β βββ page.tsx # Editor + preview
β βββ export/
β β βββ page.tsx # Render progress + download
β βββ api/
β β βββ upload/
β β β βββ route.ts # POST: save uploaded video
β β βββ render/
β β β βββ route.ts # POST: FFmpeg render pipeline
β β βββ progress/
β β β βββ route.ts # GET: SSE or poll render progress
β β βββ download/
β β βββ [id]/
β β βββ route.ts # GET: stream MP4 file
β βββ layout.tsx
β βββ globals.css
βββ components/
β βββ ui/ # shadcn components
β βββ video-upload.tsx # Drag & drop zone
β βββ video-preview.tsx # Video + caption overlay
β βββ caption-word.tsx # Animated word (Framer Motion)
β βββ caption-editor.tsx # Text input + SRT upload
β βββ style-panel.tsx # Font, color, size controls
β βββ timeline.tsx # Visual word timeline (v2)
β βββ export-progress.tsx # Progress bar
βββ lib/
β βββ utils.ts # cn(), helpers
β βββ ffmpeg.ts # FFmpeg command builders
β βββ caption-renderer.ts # Canvas rendering logic
β βββ srt-parser.ts # Parse .srt files
β βββ timing.ts # Auto-sync algorithms
βββ types/
β βββ index.ts # TypeScript interfaces
βββ public/
β βββ fonts/ # Impact, Oswald, Anton (WOFF2)
βββ next.config.js
βββ tailwind.config.ts
βββ package.json
```
---
## 9. KEY DEPENDENCIES
```json
{
"dependencies": {
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.5.0",
"tailwindcss": "^4.0.0",
"@tailwindcss/postcss": "^4.0.0",
"framer-motion": "^11.0.0",
"canvas": "^2.11.0",
"ffmpeg-static": "^5.2.0",
"ffprobe-static": "^3.1.0",
"uuid": "^9.0.0",
"tmp": "^0.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/uuid": "^9.0.0",
"@types/tmp": "^0.2.0"
}
}
```
---
## 10. ENVIRONMENT SETUP
```bash
# .env.local
# No API keys needed for MVP!
# Just make sure FFmpeg is installed:
# macOS
brew install ffmpeg
# Ubuntu/Debian
sudo apt-get install ffmpeg
# Or use ffmpeg-static (bundled)
```
---
## 11. CRITICAL IMPLEMENTATION NOTES
### 11.1 Font Loading for Canvas
```typescript
// lib/fonts.ts
import { registerFont } from 'canvas';
import path from 'path';
export function loadFonts() {
registerFont(path.join(process.cwd(), 'public/fonts/Impact.ttf'), {
family: 'Impact'
});
registerFont(path.join(process.cwd(), 'public/fonts/Oswald-Bold.ttf'), {
family: 'Oswald'
});
// ... etc
}
```
### 11.2 Temp File Cleanup
```typescript
// Run periodically or on shutdown
import tmp from 'tmp';
// Auto-cleanup on app exit
tmp.setGracefulCleanup();
// Or explicit cleanup after render
await fs.rm(`/tmp/uploads/${id}`, { recursive: true, force: true });
```
### 11.3 Progress Tracking (SSE)
```typescript
// app/api/render/route.ts (streaming progress)
export async function POST(req: NextRequest) {
const encoder = new TextEncoder();
const stream = new ReadableStream({
async start(controller) {
for (let i = 0; i < totalFrames; i++) {
// render frame i...
const progress = { percent: (i / totalFrames) * 100 };
controller.enqueue(encoder.encode(`data: ${JSON.stringify(progress)}\n\n`));
}
controller.close();
}
});
return new Response(stream, {
headers: { 'Content-Type': 'text/event-stream' }
});
}
```
### 11.4 Performance Optimization
- Extract frames at target resolution (not 4K if exporting 1080p)
- Use `ffmpeg -threads 4` for multi-core encoding
- Render frames in batches (100 at a time) to avoid memory bloat
- For long videos: stream process instead of loading all frames to RAM
---
## 12. QUICK START CHECKLIST
```
β‘ npm create next-app@latest my-caption-app --typescript --tailwind --app
β‘ cd my-caption-app
β‘ npx shadcn@latest init
β‘ npm install framer-motion canvas ffmpeg-static ffprobe-static uuid tmp
β‘ npm install -D @types/uuid @types/tmp
β‘ mkdir -p public/fonts && copy your fonts
β‘ brew install ffmpeg (or apt-get)
β‘ Implement /app/page.tsx (upload)
β‘ Implement /app/editor/page.tsx (editor + preview)
β‘ Implement /app/api/upload/route.ts
β‘ Implement /app/api/render/route.ts
β‘ Test with a 30s sample video
β‘ Polish styles, add presets
β‘ Done!
```
---
## 13. ESTIMATED BUILD TIME
| Phase | Time | Deliverable |
|-------|------|-------------|
| Setup + upload | 2 hrs | Video uploads, metadata extraction |
| Editor UI | 4 hrs | Split pane, controls, state management |
| Preview (browser) | 3 hrs | Framer Motion captions synced to video |
| Server render | 6 hrs | FFmpeg pipeline, Canvas rendering |
| Export + download | 2 hrs | Progress tracking, file serving |
| Polish | 3 hrs | Presets, error handling, cleanup |
| **Total** | **~20 hrs** | **Working MVP** |
---
*Built for personal use. No auth, no payments, no analytics. Just you and your captions.*
|