Xuyao Huang, Zelai Deng, Xu Wang, Xizhong Xiao, Zhijie Deng
5 min
As video generation models based on Diffusion Transformers (DiTs) grow in size and complexity, they become increasingly difficult to deploy on mobile devices due to their massive parameter counts and the high computational cost of multi-step iterative denoising. This paper asks whether it is possible to compress these powerful models to run efficiently on mobile hardware while preserving the high-fidelity cinematic motion effects—such as bullet time, dolly zoom, and slow motion—that users demand.
To address this, the authors propose CineMobile, a three-stage optimization pipeline designed to shrink DiT-based models without sacrificing performance. First, they employ structured depth pruning, using residual linear probes to identify and remove redundant transformer blocks while preserving the model's essential temporal and spatial representations. Second, they utilize a two-stage distillation process: a supervised warm-up to restore basic generation capabilities, followed by an adversarial distillation phase that uses reinforcement learning (GRPO) to condense the generation process into just four denoising steps. Finally, they apply a hybrid post-training quantization strategy, using 4-bit weights for feed-forward layers and 8-bit for others, to reduce the model's memory footprint to under 1 GB.
CineMobile demonstrates that aggressive compression does not necessitate a total loss of quality. Compared to the teacher model (Wan 2.1), CineMobile achieves a 40x speedup in generation time. On a MediaTek Dimensity 8400 Ultimate platform, it generates 49-frame 480p videos with a per-step latency of 20 seconds. Despite these optimizations, the model maintains VBench scores nearly identical to the much larger teacher model, confirming that it can effectively handle complex cinematic camera motions while remaining practical for mobile deployment.
This work provides a viable path for bringing high-end, generative video capabilities directly to edge devices. By demonstrating that DiT architectures can be distilled and quantized for mobile use, the authors lower the barrier for real-time, on-device creative tools, shifting the burden of video synthesis from cloud servers to the user's own hardware.
The growing demand for image-to-video creation on mobile devices has increasingly focused on cinematic motion effects like bullet time, dolly zoom, slow motion, etc. While Diffusion Transformers (DiTs) exhibit strong performance in video generation, their large parameter sizes and multi-step iterative denoising processes lead to substantial computational overhead, making efficient generation on mobile devices challenging. We propose CineMobile to bridge the gap. In particular, CineMobile adopts a three-fold optimization strategy: (1) leveraging a distillation-guided pruning approach to derive a compact yet efficient model that retains the essential video generation capabilities required for cinematic effects; (2) optimizing the compressed model into a 4-step generator via a combination of diffusion distillation and reinforcement learning; (3) employing a hybrid post-training quantization strategy to compress the model footprint to under 1 GB. Experimental results show that compared to the teacher model with the Wan 2.1 architecture, CineMobile achieves a 40x speedup in generation while maintaining comparable visual quality. Specifically, CineMobile generates 49-frame 480p videos with a per-step denoising latency of 0.6s on an NVIDIA H200 GPU and 20s on the MediaTek Dimensity 8400 Ultimate 5G platform, with a peak memory usage of 1.8 GB, demonstrating its practical applicability for mobile-based image-to-video creation.
Alex: So it's three stages: cut the redundant parts, teach it to work in fewer steps, then compress what's left. What does that translate to in practice?
Sam: The researchers found it runs roughly forty times faster than the original large model. And it can generate a short video clip directly on a mobile device, without sending anything to the cloud. Effects that previously required a server farm become something you can run in your pocket.
Alex: How does it hold up against existing tools? Is it actually competitive on quality?
Sam: That's where it gets interesting. Against large-scale cloud models, CineMobile is close in raw detail but not always the leader. Where it does stand out is camera control—keeping motion smooth and backgrounds stable through complex movements. Human evaluators in the study ranked it highest on that specific quality.
Alex: What about compared to older, simpler techniques?
Sam: There's a traditional approach called frame interpolation, where software guesses the frames between two known images—like drawing the middle pages of a flipbook when you only have the first and last. It works reasonably well for slow, simple motion, but when the movement is fast or complex, it tends to produce distorted objects and shaky results. The study found CineMobile produces significantly more coherent motion in those difficult scenarios, because it's reconstructing the movement from a learned model rather than just interpolating between two snapshots.
Alex: So the reinforcement learning scoring system is what keeps quality up even when the model is working with so few steps?
Sam: That's the paper's argument, yes. The feedback loop pushes the model to stay visually coherent even under the constraint of generating quickly. It's the piece that holds the whole approach together.
Alex: Are there trade-offs worth noting?
Sam: The main one is specialization. CineMobile uses specific adapters trained for particular cinematic movements—bullet time, dolly zooms, and similar effects. It isn't a general-purpose video generator. That focus is precisely why it works so well for those effects, but it means the system isn't designed to handle arbitrary video tasks.
Alex: A specialized tool rather than a universal engine.
Sam: For now, yes. The researchers frame this as a proof of concept—that high-fidelity cinematic motion doesn't have to live in the cloud. Whether that specialization expands over time is an open question, but the core finding is that careful compression and targeted training can preserve a surprising amount of quality in a much smaller package.
Alex: That's a meaningful result for anyone thinking about where on-device AI is heading. Thanks for walking us through it, Sam, and thanks to everyone listening to ResearchPod.