Why video is harder than images
Generating a single image is hard. Generating a video means generating many images that are also temporally consistent โ the same character has the same face frame to frame, the cup stays on the table, the camera moves smoothly.
The naive approach โ generate each frame independently โ produces flickering chaos. The frontier models all share the same fix: treat video as a single 3D tensor (height ร width ร time) and run diffusion across all three axes at once. That's why these models need orders of magnitude more compute than image models, and why outputs tend to be 3โ10 seconds long: the tensor grows linearly with duration but quality degrades fast past that.
