ai-startup
CHAPTER 37 / 100
읽기 약 2분
FUNCTION
AI 영상 스크립트: 유튜브/릴스 대본
핵심 개념
hook·구조·리듬·클로징 — 시청 유지율 70%+ 대본.
본문
짧은 영상 구조 (60초)
[0~3초] Hook (가장 중요)
- 충격적 사실 / 질문 / 약속
- "AI로 월 $10K 만든 방법"
[3~10초] 컨텍스트
- 누구를 위해
- 왜 듣는 게 좋은가
[10~50초] 메인 콘텐츠
- 3가지 핵심 포인트
- 빠른 cuts (3~5초마다)
[50~60초] CTA
- "팔로우" / "댓글" / "링크 클릭"긴 영상 (10~15분) 구조
[0:00~0:30] Hook
[0:30~1:00] 본인 소개 (간단)
[1:00~1:30] Outline (오늘 다룰 내용)
[1:30~12:00] 메인 — 3~5 챕터
[12:00~13:00] 요약
[13:00~14:00] CTA + 다음 영상AI 스크립트 생성
async function generateScript(topic: string, duration: 60 | 600) {
const isShort = duration <= 60;
const result = await generateText({
model: anthropic('claude-sonnet-4-6'),
system: `You are a top YouTube scriptwriter for tech/startup channels.
Hook formula:
- Question + Promise
- "What if I told you..."
- Surprising stat
Structure:
- Short videos: punchy, 1 idea
- Long videos: clear outline + chapters
Korean tone:
- Casual, friendly
- Avoid 정중체 (use 반말 OK)
- Energy + concrete examples`,
prompt: `Topic: ${topic}
Duration: ${duration}s
Format: ${isShort ? 'Shorts (60s)' : 'Long form (10min)'}
Generate full script with:
- Visible time stamps
- B-roll suggestions in [brackets]
- Emphasis with **bold**
- Pause moments with ...`,
});
return result.text;
}B-roll 자동 제안
[Script with B-roll]
(0:00) "당신이 매일 30분 낭비하는 이유..."
[B-roll: 시계 close-up, 물 떨어지는 영상]
(0:05) "그게 바로 [문제]입니다."
[B-roll: 사람들 노트북 앞 stress 모습]
(0:10) "오늘 3가지 방법으로 해결할게요."
[B-roll: 화면에 1, 2, 3 카운트다운]음성 (TTS)
// ElevenLabs — 가장 자연스러움
import { ElevenLabsClient } from 'elevenlabs';
const elevenlabs = new ElevenLabsClient({ apiKey: ELEVEN_KEY });
const audio = await elevenlabs.generate({
voice: 'Adam',
text: script,
model_id: 'eleven_multilingual_v2',
voice_settings: {
stability: 0.7,
similarity_boost: 0.8,
},
});
// 한국어 — 한국 보이스 선택
// "Soyoung" voice 등자동 비디오 생성 (HeyGen·Sora 등)
[HeyGen]
- AI 아바타 + 스크립트 → 비디오
- 자연스러운 입 모양
- $24/mo
[Sora] (OpenAI)
- 텍스트 → 풀 비디오
- 단편 영상에 강력
- 베타 액세스
[Kling AI / Runway]
- 짧은 클립 생성
- B-roll 활용 가능
→ MVP는 화면 녹화 + ElevenLabs voice
→ 검증 후 HeyGen 등 도입자막 자동 생성
// Whisper (OpenAI)
import { openai } from '@ai-sdk/openai';
const transcription = await openai.audio.transcriptions.create({
file: fs.createReadStream('video.mp3'),
model: 'whisper-1',
response_format: 'srt', // 자막 포맷
language: 'ko',
});
// → SRT 파일 생성
// → CapCut·Premiere에 import
// → 자동 자막다음 챕터
CH.38 "AI 이메일 마케팅".
AI 프롬프트
🤖 AI에게 잘 물어보는 법 — 모델·전략별 프롬프트
무료
월 $0 — 검증·시작 단계
AI 영상 스크립트을 무료 도구만으로 시작하는 방법을 알려줘.
소자본
월 $20~50 — MVP·초기 운영
월 $20~50 예산으로 AI 영상 스크립트을 검증·MVP 단계까지 진행하는 전략은?
프로덕션
월 $200~500 — 성장 단계
AI 영상 스크립트을 프로덕션 단계로 확장할 때 필요한 도구·운영 체계는?
스택
풀스택 — 도구 조합 분석
2026년 AI 영상 스크립트 관련 도구 5개를 조합한 추천 스택을 알려줘.
⭐ 이것만 기억하세요
AI 영상 스크립트: 유튜브/릴스 대본은 이 3가지만 확실히 잡으세요
1.Hook 0~3초가 영상 90% — 시청 유지율 결정
2.AI 스크립트 + B-roll 제안 + Whisper 자막 자동
3.ElevenLabs voice = 자연스러운 한국어
공유하기
진행도 37 / 100