V2M-Zero: Mastering the Rhythm of Video Without Paired Data

V2M-Zero: Zero-Pair Time-Aligned Video-to-Music Generation

Summary
Problem
Method
Results
Takeaways
Abstract

V2M-Zero is a novel zero-pair video-to-music generation framework that achieves precise temporal synchronization without requiring paired video-music datasets. By introducing "event curves" as a domain-agnostic bridge, it leverages a rectified flow text-to-music backbone to generate SOTA-quality audio that aligns with visual scene cuts and motion dynamics.

In the world of content creation, the difference between a "good" video and a "viral" one often lies in the edit—specifically, how the music hits the scene transitions. Orchestrating this "sync" is a manual nightmare for creators. While AI has made strides in Text-to-Music (T2M), getting that music to "see" the video and react to its cuts and motions remained an unsolved puzzle—until now.

TL;DR

V2M-Zero is a breakthrough framework that generates time-aligned music for videos without ever seeing a paired video-music dataset during training. It uses a clever "event curve" mechanism to bridge the gap between sight and sound, outperforming models trained on thousands of hours of paired data by up to 52% in temporal synchronization.

The Core Intuition: Synchronization is Domain-Agnostic

The researchers at UNC Chapel Hill and Adobe Research made a profound observation: temporal synchronization depends on when and how much change occurs, not what is changing.

A scene cut in a movie and a drum hit in a song are semantically different, but structurally identical: they are both "shocks" in the data stream. By representing these shocks as 1D Event Curves, the authors created a universal "rhythm language" that both music and video can speak.

Methodology: The "Event Curve" Bridge

The secret sauce is a three-step pipeline that turns a standard diffusion-based music model into a video-aware maestro.

1. Extracting the Rhythm

Using pretrained encoders (like DINOv2 for video and MusicFM for audio), the system calculates the intra-modal similarity between consecutive frames or audio segments. Sharp drops in similarity become peaks in the event curve.

2. Bridging the Modality Gap

To make sure a video curve "looks" like a music curve to the model, the authors apply:

  • Standardization: Zero mean and unit variance.
  • Hann-window Smoothing: Suppressing modality-specific noise while keeping the "big" transitions.

3. Concatenated Conditioning

The model is a Rectified Flow Transformer (DiT). During training, it learns to generate music conditioned on text and its own music-event curve. At test time, we simply "hot-swap" the music curve for a video curve derived from the target footage.

Model Architecture

Experiments: Slaying the Baselines

V2M-Zero was tested against heavyweights like VidMuse and AudioX (which are trained on up to 18,000 hours of paired data).

  • Temporal Precision: In the "Scene Cut Hit" (SCH) metric—how often a beat lands within 100ms of a transition—V2M-Zero scored 0.61, nearly doubling some supervised baselines.
  • Dance & Motion: By swapping the general visual encoder for a motion tracker (CoTracker), the model adapted to dance videos with surgical precision, hitting a 12.24 Temporal Deviation, significantly better than specialized dance-to-music models.

Experimental Results Table

Deep Insight: Why Less is More

The most surprising takeaway? V2M-Zero generalizes better than paired models. Models trained on noisy internet video-music pairs often overfit to specific genres or low-quality audio. Because V2M-Zero trains on clean, high-fidelity instrumental music and uses a structural bridge (the curve), it maintains higher audio quality (FAD scores) while being more flexible across diverse video domains—from cinematic pans to high-energy street dance.

Conclusion and Future Outlook

V2M-Zero proves that we don't always need massive, "noisy" multimodal datasets to achieve alignment. By focusing on the physical intuition of change, we can build generative systems that are both parameter-efficient and structurally accurate. For the future, the authors aim to explore "low-resource" pairing to add artistic stylization to this rock-solid rhythmic foundation.

Check out the project and samples at: Genjib GitHub

Find Similar Papers

Try Our Examples

  • Search for recent papers using intra-modal self-similarity or novelty curves for zero-shot cross-modal alignment in generative AI.
  • Which paper first proposed the use of Rectified Flow models for controllable audio generation, and how does V2M-Zero's conditioning method differ?
  • Explore studies applying domain-specific motion trackers (like CoTracker) as conditioning signals for high-precision temporal synthesis in CV and Audio tasks.
Contents
V2M-Zero: Mastering the Rhythm of Video Without Paired Data
1. TL;DR
2. The Core Intuition: Synchronization is Domain-Agnostic
3. Methodology: The "Event Curve" Bridge
3.1. 1. Extracting the Rhythm
3.2. 2. Bridging the Modality Gap
3.3. 3. Concatenated Conditioning
4. Experiments: Slaying the Baselines
5. Deep Insight: Why Less is More
6. Conclusion and Future Outlook