AI VideoAI Video · Lesson 02
Prompt Craft for Video
The five-part prompt formula that separates usable clips from slop.
Video tutorialTrack course · Youri van Hofwegen
Speed
Transcript & captions
9/9
A video prompt has to describe a subject, an action, an environment, a camera and a look. Missing any of these means the model invents it — and the model's defaults are boring.
Prompt formulajs
const prompt = [
'SUBJECT: a lone courier in a rain-slick chrome jacket',
'ACTION: walking slowly toward camera, glancing over her shoulder',
'ENVIRONMENT: neon alley, wet asphalt, steam vents, night',
'CAMERA: 35mm, slow dolly-in, shallow depth of field',
'LOOK: cyberpunk teal and magenta grade, volumetric haze, film grain'
].join('. ');- One action per clip. Two actions produce mush or a cut you didn't ask for.
- Describe what IS in frame, not what isn't — negatives are weakly obeyed.
- Front-load the subject: early tokens carry more weight.
- Reuse the same LOOK block across every shot for visual consistency.
Keep a prompt library. Your grade block, camera block and character block should be copy-paste constants across a whole project.
Knowledge check
0/2 answeredHow many distinct actions should one clip prompt request?
Why reuse a fixed LOOK block?