REVIEW 4 major objections 7 minor 2 cited by
FreeLong++: Training-Free Long Video Generation via Multi-band SpectralFusion
T0 review · 4 major / 7 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A training-free, multi-branch attention plugin can push short-video diffusion models to 4x-8x native length by fusing the frequency bands of differently sized attention windows.
desk verdict Practical training-free long-video method with solid empirical results, but the Nyquist-based frequency-band justification is mathematically off and needs a direct spectral test or a reframing. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is Multi-band SpectralFusion (MSF): temporal attention is masked into L parallel branches with window sizes $\alpha_l T_\alpha$ (e.g., $\alpha = 1,2,4$ for 4x, $\alpha = 1,2,4,8$ for 8x), each branch's latent is transformed with a 3D fast Fourier transform, multiplied by a scale-specific band-pass mask $P_l$, summed across branches, and transformed back. A second component, SpecMix, initializes the diffusion noise as a frequency-dependent blend between a shuffled consistency baseline and independent Gaussian noise, with the mixing angle growing from the sequence center outward. The band-pass masks are the part that carries the paper's frequency story: the upper edge of each branch's band is set by $\tfrac{1}{2\alpha_l}\pi$, with adjacent branches covering successive bands from low to high frequencies, so the most local branch supplies the highest frequencies and the most global branch supplies the lowest.
What would settle it
Compute the actual Fourier spectrum of a single attention branch's output under FreeLong++ while the input is a fixed long video latent, and check whether the measured passband matches the claimed band for that window size. If a branch with $\alpha_l = 4$ shows significant energy above $\tfrac{1}{8}\pi$, or if the filter bank works equally well after swapping which branch's output is assigned to which band, the frequency-alignment story is not what is doing the work.
Extended reading notes
Core claim
The central discovery claimed is that the failure mode of long video generation is visible in the frequency domain before it is visible in pixels: the signal-to-noise ratio of low-frequency components stays roughly constant as length grows (about 1.0 at native length to 0.97 at 8x for the models tested), while high-frequency SNR drops substantially (to about 0.6 at 8x). The paper further claims that this high-frequency distortion can be corrected by a multi-branch attention scheme in which each branch's temporal window length $\alpha_l T_\alpha$ determines a frequency band, and the bands are fused by 3D FFT, band-pass filtering, summation, and inverse FFT. The stated result is that this restores fine spatial-temporal detail while keeping global consistency, producing better scores than direct sampling, sliding-window attention, FreeNoise, and an autoregressive fine-tuned baseline, and supporting 4x and 8x extensions.
Load-bearing premise
The load-bearing premise is that a temporal attention window of length $\alpha_l T_\alpha$ actually determines the branch's maximum representable frequency, so a fixed frequency band can be assigned to each window size; if window length only changes frequency resolution rather than the passband, the multi-band fusion is not derived and the method's justification reduces to an arbitrary hand-designed filter bank.
Editorial extensions
If this is right
- Any diffusion transformer that uses standard temporal attention can adopt FreeLong++ by replacing the attention module, so future short-video models should inherit the same length extension without retraining.
- Long-form video generation from a single prompt becomes feasible at the same model size, since the extra cost is only in attention windows, not in parameters or fine-tuning.
- Multi-prompt storytelling can be done by assigning prompts to segments and relying on the fused low-frequency backbone for smooth transitions, as demonstrated by the paper's scene-transition results.
- Pose- or depth-guided video generation over hundreds of frames becomes more reliable, because the global branch preserves layout while local branches keep motion detail.
- The frequency analysis implies that other training-free long-video methods should be judged by how well they protect high-frequency components, not only by boundary consistency.
Reading between the lines
- The paper does not draw this conclusion, but its own numbers suggest the mid-frequency branches carry much of the gain: at 4x length only about 3% of frequency bands remain reliable with a two-branch design, so a test that removes only the $\alpha=2$ branch would show whether mid-range motion, not pure high-frequency detail, is the bottleneck.
- Because the filter cutoffs are fixed constants ($D_0 = 0.25$ and band edges at $\tfrac{1}{8}\pi$ and $\tfrac{1}{4}\pi$), the method may be sensitive to the temporal statistics of the base model; an extension would derive cutoffs from each model's measured SNR curve instead of setting them by hand.
- SpecMix and the spectral fusion are separate mechanisms, and the paper does not report a full $2\times2$ ablation of the two on the same backbone; a reader testing FreeLong++ with SpecMix removed and with a single fused branch would learn which component restores which metric.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FreeLong++, a training-free framework for extending short-video diffusion models (Wan2.1, LTX-Video) to 4–8× longer clips. FreeLong++ replaces the standard temporal attention with multiple masked attention branches at different window sizes, transforms each branch output into the spatiotemporal frequency domain, and fuses them with band-pass masks P_l whose bands are supposedly determined by the window size via the Nyquist criterion. A spectral noise initialization (SpecMix) is also introduced. Experiments on VBench-Long report consistent improvements over direct sampling, sliding window, FreeNoise, and CausVid on consistency and fidelity metrics, plus demonstrations for multi-prompt and control-guided generation.
Significance. If the empirical results hold, the contribution is practically valuable: a training-free, parameter-free plug-in that improves long-video generation across two modern backbones, with ablations isolating the main components and a sparse-attention variant that reduces inference cost. The paper also makes a useful empirical observation about high-frequency degradation in longer videos. However, the central theoretical justification for the frequency-band assignment is mathematically unsupported, the SNR metric underlying the motivating analysis is undefined, and the quantitative claims lack error bars. The method may still work as a hand-designed filter bank, but the paper currently overstates the derivation of its core mechanism. These gaps are load-bearing and require substantive revision.
major comments (4)
- [§4.2.4 (Multi-band Spectral Fusion)] The statement "The temporal window α_l T_α for branch l determines its maximum frequency 1/(2α_l)π based on the Nyquist criterion" is not correct for the discrete-time latents actually processed. In a sequence of length T, the DFT frequencies always span [0, π] regardless of the attention window size; the window size changes the temporal support and frequency resolution of the branch output, not the Nyquist limit. Consequently the passbands [0, 1/8π], [1/8π, 1/4π], [1/4π, 1.0π] for α_l = 4, 2, 1 are not derived from the window sizes. Since this assignment is what the multi-band fusion equation (Z' = Σ_l P_l ⊙ F_3D(Z_l)) treats as "frequency-aligned," the central theoretical justification is unsupported. The method may still work as a heuristic filter bank, but the paper should either provide an empirical spectral analysis showing that each branch's energy actually concentrates in its assigned band (e.g., spectral plots of branch outputs before fusion) or explicitly downgrade the claim to a heuristic design with ablations over band splits.
- [§4.1.1 and Figures 2, 4 (Frequency analysis)] The Signal-to-Noise Ratio (SNR) used to motivate the high-frequency distortion is never defined. It is unclear what the "signal" and "noise" are (e.g., comparing generated long videos against what reference?), how the frequency bands are extracted, and what "relative SNR above 0.9" means. Without this definition, the central observation that high-frequency components degrade with length cannot be reproduced or quantitatively checked. Please provide a precise formula, the reference signal, and ideally release the analysis code.
- [Tables 1–3 (Quantitative comparison)] All quantitative results are reported as single numbers with no error bars, multiple seeds, or statistical significance tests. Video generation is stochastic, and the reported between-method differences (e.g., imaging quality 62.42 vs 64.93 in Table 1) may be within run-to-run noise. Report mean±std over at least three seeds for the main comparison and ablations, and state the number of prompts per metric (the text says 100 prompts for VBench-Long, which is fine).
- [§4.2.4 (Filter construction)] The band-pass masks P_l are not specified beyond "band-pass filter." For reproducibility, the paper must state whether P_l are hard masks or smooth (e.g., Gaussian) filters, how the cutoff frequencies are normalized (relative to the latent sampling rate, and with what roll-off), and the exact bands for the 4-branch 8× configuration (α_l = 1, 2, 4, 8). Currently the implementation details in §4.2.6 only mention window sizes and sparse attention, not the spectral masks.
minor comments (7)
- [Abstract] The phrase "extends FreeLong dual-branch design" should be "extends FreeLong's dual-branch design."
- [§4.2.6] The text contains a typo: "varing" should be "varying."
- [§4.2.4 (Rationale paragraph)] The rationale paragraph refers to "low-frequency global features (Z1)," but Z1 was defined earlier as the most local branch (l = 1); this should be Z_L or another clearly global label.
- [Figures 2 and 4] The figures lack axis labels and a full legend; the captions should define "relative SNR" and state the reference video length used to compute the ratios.
- [§4.1.4] The Gaussian Low Pass Filter cutoff D0 = 0.25 is not precisely defined; specify whether D0 is the standard deviation, the radius where the response falls to a given value, and how it is normalized (e.g., relative to the Nyquist frequency).
- [§4.2.5 (SpecMix)] In the SpecMix description, the text says "For each time index t" after transforming to the spectral domain; clarify whether t indexes temporal frequency bins or frame positions, since the subsequent low/high-frequency discussion depends on that distinction.
- [References] References [56] and [57] are reprints of Nyquist and Shannon; give the original publication years or use a consistent citation style for reprints.
Circularity Check
No significant circularity: FreeLong++ is an observation-motivated heuristic whose improvements are measured on independent VBench-Long metrics; the disputed Nyquist band assignment in §4.2.4 is a mathematical correctness issue, not a self-referential derivation.
full rationale
FreeLong++ does not fit any parameter to the metrics it later reports as predictions, and it does not invoke a load-bearing self-citation. The design chain starts from an SNR-based observation of high-frequency degradation in the base models (Figs. 2 and 4), and the proposed remedy—windowed attention branches combined by hand-designed spectral masks—is a heuristic response to that observation, not an equation whose output is its own input. The evaluation uses VBench-Long consistency and fidelity metrics that are external to the design-time SNR analysis, so the reported gains are independent evidence. The only mathematically load-bearing assertion, in §4.2.4, is 'The temporal window α_l T_α for branch l determines its maximum frequency 1/(2α_l)π based on the Nyquist criterion'; even if this application of Nyquist is unsupported for discrete-time latent features (window length affects resolution, not the passband upper bound), that is a correctness risk rather than a circular step, because the band masks are stipulated design choices and are not derived from the evaluation targets. The self-citations in the related-work list ([6], [7]) are contextual and carry no argumentative weight. Hence no step in the paper reduces by construction to its inputs.
Assumptions & free parameters
free parameters (3)
- Gaussian LPF cutoff D0 =
0.25
- Branch scale set α_l =
[1,2,4] for 4x; [1,2,4,8] for 8x
- Number of branches L =
3 for 4x, 4 for 8x
assumptions (3)
- domain assumption The SNR measure computed on generated videos correctly identifies high-frequency distortion as the primary degradation cause.
- ad hoc to paper The temporal window length α_l T_α determines the maximum frequency of that branch through the Nyquist criterion, permitting the fixed band split in Sec. 4.2.4.
- domain assumption The pretrained video diffusion models (Wan2.1, LTX-Video) can be treated as fixed black boxes whose intermediate features are compatible with the spectral fusion operation.
Cite this review
Pith. "Pith review of FreeLong++: Training-Free Long Video Generation via Multi-band SpectralFusion." pith.science (2026). https://pith.science/paper/B234Z4JQ
@misc{pith2026250700162,
author = {Pith},
title = {Pith review of: FreeLong++: Training-Free Long Video Generation via Multi-band SpectralFusion},
year = {2026},
howpublished = {\url{https://pith.science/paper/B234Z4JQ}},
note = {Machine review of arXiv:2507.00162}
}
read the original abstract
Recent advances in video generation models have enabled high-quality short video generation from text prompts. However, extending these models to longer videos remains a significant challenge, primarily due to degraded temporal consistency and visual fidelity. Our preliminary observations show that naively applying short-video generation models to longer sequences leads to noticeable quality degradation. Further analysis identifies a systematic trend where high-frequency components become increasingly distorted as video length grows, an issue we term high-frequency distortion. To address this, we propose FreeLong, a training-free framework designed to balance the frequency distribution of long video features during the denoising process. FreeLong achieves this by blending global low-frequency features, which capture holistic semantics across the full video, with local high-frequency features extracted from short temporal windows to preserve fine details. Building on this, FreeLong++ extends FreeLong dual-branch design into a multi-branch architecture with multiple attention branches, each operating at a distinct temporal scale. By arranging multiple window sizes from global to local, FreeLong++ enables multi-band frequency fusion from low to high frequencies, ensuring both semantic continuity and fine-grained motion dynamics across longer video sequences. Without any additional training, FreeLong++ can be plugged into existing video generation models (e.g. Wan2.1 and LTX-Video) to produce longer videos with substantially improved temporal consistency and visual fidelity. We demonstrate that our approach outperforms previous methods on longer video generation tasks (e.g. 4x and 8x of native length). It also supports coherent multi-prompt video generation with smooth scene transitions and enables controllable video generation using long depth or pose sequences.
Figures
Figures from the paper (5 more)
Forward citations
Cited by 2 Pith papers
-
FreqForcing: Autoregressive Long Video Generation via Spectral Self-Anchoring
Spectral Self-Anchoring fuses low-frequency anchor attention with high-frequency local attention to stop autoregressive video collapse, enabling 24× length extrapolation without retraining.
-
Surprise Forcing: What to Remember, When to Skip in Long Video Generation
A training-free 'surprise' controller decides which old frames to keep in memory and which chunks need fewer denoising steps, improving long-video consistency at real-time speed.
Reference graph
Works this paper leans on
-
[1]
Wan: Open and advanced large-scale video generative models,
WanTeam, A. Wang, B. Ai, B. Wen, C. Mao, C.-W. Xie, D. Chen, F. Yu, H. Zhao, J. Yang, J. Zeng, J. Wang, J. Zhang, J. Zhou, J. Wang, J. Chen, K. Zhu, K. Zhao, K. Yan, L. Huang, M. Feng, N. Zhang, P . Li, P . Wu, R. Chu, R. Feng, S. Zhang, S. Sun, T. Fang, T. Wang, T. Gui, T. Weng, T. Shen, W. Lin, W. Wang, W. Wang, W. Zhou, W. Wang, W. Shen, W. Yu, X. Shi,...
arXiv 2025
-
[2]
Ltx-video: Realtime video latent diffusion,
Y. HaCohen, N. Chiprut, B. Brazowski, D. Shalem, D. Moshe, E. Richardson, E. Levin, G. Shiran, N. Zabari, O. Gordon, P . Panet, S. Weissbuch, V . Kulikov, Y. Bitterman, Z. Melumian, and O. Bibi, “Ltx-video: Realtime video latent diffusion,”arXiv preprint arXiv:2501.00103, 2024
arXiv 2024
-
[3]
Videocrafter2: Overcoming data limitations for high- quality video diffusion models,
H. Chen, Y. Zhang, X. Cun, M. Xia, X. Wang, C. Weng, and Y. Shan, “Videocrafter2: Overcoming data limitations for high- quality video diffusion models,” 2024
2024
-
[4]
Cogvideox: Text-to-video diffusion models with an expert transformer,
Z. Yang, J. Teng, W. Zheng, M. Ding, S. Huang, J. Xu, Y. Yang, W. Hong, X. Zhang, G. Feng et al. , “Cogvideox: Text-to-video diffusion models with an expert transformer,” arXiv preprint arXiv:2408.06072, 2024
arXiv 2024
-
[5]
Animatediff: Animate your personalized text-to-image diffusion models without specific tuning,
Y. Guo, C. Yang, A. Rao, Y. Wang, Y. Qiao, D. Lin, and B. Dai, “Animatediff: Animate your personalized text-to-image diffusion models without specific tuning,” arXiv preprint arXiv:2307.04725 , 2023
arXiv 2023
-
[6]
FlowZero: Zero-Shot Text-to-Video Synthesis with LLM-Driven Dynamic Scene Syntax
Y. Lu, L. Zhu, H. Fan, and Y. Yang, “Flowzero: Zero-shot text- to-video synthesis with llm-driven dynamic scene syntax,” arXiv preprint arXiv:2311.15813, 2023
work page Pith review arXiv 2023
-
[7]
Eva: Zero-shot accu- rate attributes and multi-object video editing,
X. Yang, L. Zhu, H. Fan, and Y. Yang, “Eva: Zero-shot accu- rate attributes and multi-object video editing,” arXiv preprint arXiv:2403.16111, 2024
arXiv 2024
-
[8]
Hunyuanvideo: A systematic framework for large video generative models,
Z. Z. e. Weijie Kong, Qi Tian, “Hunyuanvideo: A systematic framework for large video generative models,” 2024. [Online]. Available: https://arxiv.org/abs/2412.03603
arXiv 2024
Show all 70 references
-
[9]
Step-video-t2v technical report: The practice, challenges, and future of video foundation model,
G. Ma, H. Huang, K. Yan, L. Chen, N. Duan, S. Yin, C. Wan, R. Ming, X. Song, X. Chen et al., “Step-video-t2v technical report: The practice, challenges, and future of video foundation model,” arXiv preprint arXiv:2502.10248, 2025
2025 arXiv
-
[10]
Cosmos world foundation model platform for physical ai,
N. Agarwal, A. Ali, M. Bala, Y. Balaji, E. Barker, T. Cai, P . Chattopadhyay, Y. Chen, Y. Cui, Y. Ding et al. , “Cosmos world foundation model platform for physical ai,” arXiv preprint arXiv:2501.03575, 2025
2025 arXiv
-
[11]
Movie gen: A cast of media foundation models,
A. Polyak, A. Zohar, A. Brown, A. Tjandra, A. Sinha, A. Lee, A. Vyas, B. Shi, C.-Y. Ma, C.-Y. Chuanget al., “Movie gen: A cast of media foundation models,” arXiv preprint arXiv:2410.13720, 2024
2024 arXiv
-
[12]
Pyramidal flow matching for efficient video generative modeling,
Y. Jin, Z. Sun, N. Li, K. Xu, H. Jiang, N. Zhuang, Q. Huang, Y. Song, Y. Mu, and Z. Lin, “Pyramidal flow matching for efficient video generative modeling,” arXiv preprint arXiv:2410.05954, 2024
2024
-
[13]
Open-sora plan: Open-source large video generation model,
B. Lin, Y. Ge, X. Cheng, Z. Li, B. Zhu, S. Wang, X. He, Y. Ye, S. Yuan, L. Chen et al., “Open-sora plan: Open-source large video generation model,” arXiv preprint arXiv:2412.00131, 2024
2024 arXiv
-
[14]
Stable video IEEE TRANSACTIONS ON PATTERN ANAL YSIS AND MACHINE INTELLIGENCE 13 diffusion: Scaling latent video diffusion models to large datasets,
A. Blattmann, T. Dockhorn, S. Kulal, D. Mendelevitch, M. Kilian, D. Lorenz, Y. Levi, Z. English, V . Voleti, A. Lettset al., “Stable video IEEE TRANSACTIONS ON PATTERN ANAL YSIS AND MACHINE INTELLIGENCE 13 diffusion: Scaling latent video diffusion models to large datasets,” ar...
2023 arXiv
-
[15]
Internvid: A large-scale video-text dataset for multimodal understanding and generation,
Y. Wang, Y. He, Y. Li, K. Li, J. Yu, X. Ma, X. Li, G. Chen, X. Chen, Y. Wanget al., “Internvid: A large-scale video-text dataset for multimodal understanding and generation,” in The Twelfth International Conference on Learning Representations, 2023
2023
-
[16]
Frozen in time: A joint video and image encoder for end-to-end retrieval,
M. Bain, A. Nagrani, G. Varol, and A. Zisserman, “Frozen in time: A joint video and image encoder for end-to-end retrieval,” in IEEE International Conference on Computer Vision, 2021
2021
-
[17]
Panda-70m: Captioning 70m videos with multiple cross-modality teachers,
T.-S. Chen, A. Siarohin, W. Menapace, E. Deyneka, H.-w. Chao, B. E. Jeon, Y. Fang, H.-Y. Lee, J. Ren, M.-H. Yanget al., “Panda-70m: Captioning 70m videos with multiple cross-modality teachers,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognitio...
2024
-
[18]
Koala-36m: A large-scale video dataset improving consistency between fine-grained conditions and video content,
Q. Wang, Y. Shi, J. Ou, R. Chen, K. Lin, J. Wang, B. Jiang, H. Yang, M. Zheng, X. Tao et al. , “Koala-36m: A large-scale video dataset improving consistency between fine-grained conditions and video content,” in Proceedings of the Computer Vision and Pattern Recogni- tion Conf...
2025
-
[19]
Vidgen-1m: A large- scale dataset for text-to-video generation,
Z. Tan, X. Yang, L. Qin, and H. Li, “Vidgen-1m: A large- scale dataset for text-to-video generation,” arXiv preprint arXiv:2408.02629, 2024
2024 arXiv
-
[20]
Hoigen-1m: A large-scale dataset for human-object interaction video generation,
K. Liu, Q. Liu, X. Liu, J. Li, Y. Zhang, J. Luo, X. He, and W. Liu, “Hoigen-1m: A large-scale dataset for human-object interaction video generation,” in Proceedings of the Computer Vision and Pattern Recognition Conference, 2025, pp. 24 001–24 010
2025
-
[21]
Egovid-5m: A large-scale video- action dataset for egocentric video generation,
X. Wang, K. Zhao, F. Liu, J. Wang, G. Zhao, X. Bao, Z. Zhu, Y. Zhang, and X. Wang, “Egovid-5m: A large-scale video- action dataset for egocentric video generation,” arXiv preprint arXiv:2411.08380, 2024
2024 arXiv
-
[22]
Stream- ingt2v: Consistent, dynamic, and extendable long video genera- tion from text,
R. Henschel, L. Khachatryan, D. Hayrapetyan, H. Poghosyan, V . Tadevosyan, Z. Wang, S. Navasardyan, and H. Shi, “Stream- ingt2v: Consistent, dynamic, and extendable long video genera- tion from text,” arXiv preprint arXiv:2403.14773, 2024
2024 arXiv
-
[23]
Vidu: a highly consistent, dynamic and skilled text-to-video generator with diffusion models,
F. Bao, C. Xiang, G. Yue, G. He, H. Zhu, K. Zheng, M. Zhao, S. Liu, Y. Wang, and J. Zhu, “Vidu: a highly consistent, dynamic and skilled text-to-video generator with diffusion models,” arXiv preprint arXiv:2405.04233, 2024
2024 arXiv
-
[24]
Videotetris: Towards compositional text-to- video generation,
Y. Tian, L. Yang, H. Yang, Y. Gao, Y. Deng, J. Chen, X. Wang, Z. Yu, X. Tao, P . Wanet al., “Videotetris: Towards compositional text-to- video generation,” arXiv preprint arXiv:2406.04277, 2024
2024 arXiv
-
[25]
Videofactory: Swap attention in spatiotemporal diffusions for text-to-video generation,
W. Wang, H. Yang, Z. Tuo, H. He, J. Zhu, J. Fu, and J. Liu, “Videofactory: Swap attention in spatiotemporal diffusions for text-to-video generation,” arXiv preprint arXiv:2305.10874, 2023
2023 arXiv
-
[26]
Vlogger: Make your dream a vlog,
S. Zhuang, K. Li, X. Chen, Y. Wang, Z. Liu, Y. Qiao, and Y. Wang, “Vlogger: Make your dream a vlog,” arXiv preprint arXiv:2401.09414, 2024
2024 arXiv
-
[27]
Packing input frame contexts in next- frame prediction models for video generation,
L. Zhang and M. Agrawala, “Packing input frame contexts in next- frame prediction models for video generation,” Arxiv, 2025
2025
-
[28]
Long-context autoregres- sive video modeling with next-frame prediction,
Y. Gu, W. Mao, and M. Z. Shou, “Long-context autoregres- sive video modeling with next-frame prediction,” arXiv preprint arXiv:2503.19325, 2025
2025 arXiv
-
[29]
Long context tuning for video generation,
Y. Guo, C. Yang, Z. Yang, Z. Ma, Z. Lin, Z. Yang, D. Lin, and L. Jiang, “Long context tuning for video generation,”arXiv preprint arXiv:2503.10589, 2025
2025 arXiv
-
[30]
One-minute video generation with test-time training,
K. Dalal, D. Koceja, J. Xu, Y. Zhao, S. Han, K. C. Cheung, J. Kautz, Y. Choi, Y. Sun, and X. Wang, “One-minute video generation with test-time training,” in Proceedings of the Computer Vision and Pattern Recognition Conference, 2025, pp. 17 702–17 711
2025
-
[31]
Vide- orag: Retrieval-augmented generation with extreme long-context videos,
X. Ren, L. Xu, L. Xia, S. Wang, D. Yin, and C. Huang, “Vide- orag: Retrieval-augmented generation with extreme long-context videos,” arXiv preprint arXiv:2502.01549, 2025
2025 arXiv
-
[32]
Videoauteur: Towards long narrative video generation,
J. Xiao, F. Cheng, L. Qi, L. Gui, J. Cen, Z. Ma, A. Yuille, and L. Jiang, “Videoauteur: Towards long narrative video generation,” arXiv preprint arXiv:2501.06173, 2025
2025 arXiv
-
[33]
Owl-1: Omni world model for consistent long video generation,
Y. Huang, W. Zheng, Y. Gao, X. Tao, P . Wan, D. Zhang, J. Zhou, and J. Lu, “Owl-1: Omni world model for consistent long video generation,” arXiv preprint arXiv:2412.09600, 2024
2024 arXiv
-
[34]
Freenoise: Tuning-free longer video diffusion via noise reschedul- ing,
H. Qiu, M. Xia, Y. Zhang, Y. He, X. Wang, Y. Shan, and Z. Liu, “Freenoise: Tuning-free longer video diffusion via noise reschedul- ing,” arXiv preprint arXiv:2310.15169, 2023
2023 arXiv
-
[35]
Gen- l-video: Multi-text to long video generation via temporal co- denoising,
F.-Y. Wang, W. Chen, G. Song, H.-J. Ye, Y. Liu, and H. Li, “Gen- l-video: Multi-text to long video generation via temporal co- denoising,” arXiv preprint arXiv:2305.18264, 2023
2023 arXiv
-
[36]
Fifo-diffusion: Generating infinite videos from text without training,
J. Kim, J. Kang, J. Choi, and B. Han, “Fifo-diffusion: Generating infinite videos from text without training,” in NeurIPS, 2024
2024
-
[37]
Vstar: Generative temporal nursing for longer dynamic video synthesis,
Y. Li, W. Beluch, M. Keuper, D. Zhang, and A. Khoreva, “Vstar: Generative temporal nursing for longer dynamic video synthesis,” arXiv preprint arXiv:2403.13501, 2024
2024 arXiv
-
[38]
Riflex: A free lunch for length extrapolation in video diffusion transformers,
M. Zhao, G. He, Y. Chen, H. Zhu, C. Li, and J. Zhu, “Riflex: A free lunch for length extrapolation in video diffusion transformers,” arXiv preprint arXiv:2502.15894, 2025
2025 arXiv
-
[39]
Ditctrl: Exploring attention control in multi-modal diffusion transformer for tuning-free multi-prompt longer video generation,
M. Cai, X. Cun, X. Li, W. Liu, Z. Zhang, Y. Zhang, Y. Shan, and X. Yue, “Ditctrl: Exploring attention control in multi-modal diffusion transformer for tuning-free multi-prompt longer video generation,” in Proceedings of the Computer Vision and Pattern Recog- nition Conference,...
2025
-
[40]
Freepca: Integrating consistency information across long-short frames in training-free long video generation via principal component analysis,
J. Tan, H. Yu, J. Huang, J. Xiao, and F. Zhao, “Freepca: Integrating consistency information across long-short frames in training-free long video generation via principal component analysis,” in Pro- ceedings of the Computer Vision and Pattern Recognition Conference , 2025, pp...
2025
-
[41]
Longdiff: Training-free long video generation in one go,
Z. Li, H. Rahmani, Q. Ke, and J. Liu, “Longdiff: Training-free long video generation in one go,” in Proceedings of the Computer Vision and Pattern Recognition Conference, 2025, pp. 17 789–17 798
2025
-
[42]
Scalingnoise: Scaling inference-time search for generating infinite videos,
H. Yang, F. Tang, M. Hu, Q. Yin, Y. Li, Y. Liu, Z. Peng, P . Gao, J. He, Z. Ge et al., “Scalingnoise: Scaling inference-time search for generating infinite videos,” arXiv preprint arXiv:2503.16400, 2025
2025 arXiv
-
[43]
High-resolution image synthesis with latent diffusion models,
R. Rombach, A. Blattmann, D. Lorenz, P . Esser, and B. Ommer, “High-resolution image synthesis with latent diffusion models,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 10 684–10 695
2022
-
[44]
Lavie: High-quality video gen- eration with cascaded latent diffusion models,
Y. Wang, X. Chen, X. Ma, S. Zhou, Z. Huang, Y. Wang, C. Yang, Y. He, J. Yu, P . Yang et al. , “Lavie: High-quality video gen- eration with cascaded latent diffusion models,” arXiv preprint arXiv:2309.15103, 2023
2023 arXiv
-
[45]
Video generation models as world simulators,
T. Brooks, B. Peebles, C. Holmes, W. DePue, Y. Guo, L. Jing, D. Schnurr, J. Taylor, T. Luhman, E. Luhman, C. Ng, R. Wang, and A. Ramesh, “Video generation models as world simulators,” 2024, accessed: 2024-05-09. [Online]. Available: https://openai. com/research/video-generatio...
2024
-
[46]
Scalable diffusion models with trans- formers,
W. Peebles and S. Xie, “Scalable diffusion models with trans- formers,” in Proceedings of the IEEE/CVF international conference on computer vision, 2023, pp. 4195–4205
2023
-
[47]
Mochi 1,
G. Team, “Mochi 1,” https://github.com/genmoai/models, 2024
2024
-
[48]
From slow bidirectional to fast autoregres- sive video diffusion models,
T. Yin, Q. Zhang, R. Zhang, W. T. Freeman, F. Durand, E. Shecht- man, and X. Huang, “From slow bidirectional to fast autoregres- sive video diffusion models,” in CVPR, 2025
2025
-
[49]
Magi-1: Autoregressive video generation at scale,
S. ai, H. Teng, H. Jia, L. Sun, L. Li, M. Li, M. Tang, S. Han, T. Zhang, W. Q. Zhang, W. Luo, X. Kang, Y. Sun, Y. Cao, Y. Huang, Y. Lin, Y. Fang, Z. Tao, Z. Zhang, Z. Wang, Z. Liu, D. Shi, G. Su, H. Sun, H. Pan, J. Wang, J. Sheng, M. Cui, M. Hu, M. Yan, S. Yin, S. Zhang, T. Li...
2025 arXiv
-
[50]
Denoising diffusion implicit models,
J. Song, C. Meng, and S. Ermon, “Denoising diffusion implicit models,” arXiv preprint arXiv:2010.02502, 2020
2010 arXiv
-
[51]
Flow matching for generative modeling,
Y. Lipman, R. T. Chen, H. Ben-Hamu, M. Nickel, and M. Le, “Flow matching for generative modeling,” arXiv preprint arXiv:2210.02747, 2022
2022 arXiv
-
[52]
Spargeattn: Accurate sparse attention accelerating any model inference,
J. Zhang, C. Xiang, H. Huang, J. Wei, H. Xi, J. Zhu, and J. Chen, “Spargeattn: Accurate sparse attention accelerating any model inference,” arXiv preprint arXiv:2502.18137, 2025
2025
-
[53]
Flashvideo: Flowing fidelity to detail for efficient high-resolution video generation,
S. Zhang, W. Li, S. Chen, C. Ge, P . Sun, Y. Zhang, Y. Jiang, Z. Yuan, B. Peng, and P . Luo, “Flashvideo: Flowing fidelity to detail for efficient high-resolution video generation,”arXiv preprint arXiv:2502.05179, 2025
2025
-
[54]
Fast video generation with sliding tile attention,
P . Zhang, Y. Chen, R. Su, H. Ding, I. Stoica, Z. Liu, and H. Zhang, “Fast video generation with sliding tile attention,” arXiv preprint arXiv:2502.04507, 2025
2025 arXiv
-
[55]
Sparse videogen: Accelerating video dif- fusion transformers with spatial-temporal sparsity,
H. Xi, S. Yang, Y. Zhao, C. Xu, M. Li, X. Li, Y. Lin, H. Cai, J. Zhang, D. Li et al. , “Sparse videogen: Accelerating video dif- fusion transformers with spatial-temporal sparsity,” arXiv preprint arXiv:2502.01776, 2025
2025 arXiv
-
[56]
Certain topics in telegraph transmission theory,
H. Nyquist, “Certain topics in telegraph transmission theory,” Transactions of the American Institute of Electrical Engineers , vol. 47, no. 2, pp. 617–644, 2009
2009
-
[57]
Communication in the presence of noise,
C. E. Shannon, “Communication in the presence of noise,” Proceed- ings of the IRE, vol. 37, no. 1, pp. 10–21, 2006
2006
-
[58]
Freeinit: Bridg- ing initialization gap in video diffusion models,
T. Wu, C. Si, Y. Jiang, Z. Huang, and Z. Liu, “Freeinit: Bridg- ing initialization gap in video diffusion models,” arXiv preprint arXiv:2312.07537, 2023. IEEE TRANSACTIONS ON PATTERN ANAL YSIS AND MACHINE INTELLIGENCE 14
2023 arXiv
-
[59]
Free- bloom: Zero-shot text-to-video generator with llm director and ldm animator,
H. Huang, Y. Feng, C. Shi, L. Xu, J. Yu, and S. Yang, “Free- bloom: Zero-shot text-to-video generator with llm director and ldm animator,” Advances in Neural Information Processing Systems , vol. 36, pp. 26 135–26 158, 2023
2023
-
[60]
FlashAttention-2: Faster attention with better parallelism and work partitioning,
T. Dao, “FlashAttention-2: Faster attention with better parallelism and work partitioning,” in International Conference on Learning Representations (ICLR), 2024
2024
-
[61]
Vbench: Comprehensive benchmark suite for video generative models,
Z. Huang, Y. He, J. Yu, F. Zhang, C. Si, Y. Jiang, Y. Zhang, T. Wu, Q. Jin, N. Chanpaisit et al., “Vbench: Comprehensive benchmark suite for video generative models,”arXiv preprint arXiv:2311.17982, 2023
2023 arXiv
-
[62]
Emerging properties in self-supervised vision transformers,
M. Caron, H. Touvron, I. Misra, H. J ´egou, J. Mairal, P . Bojanowski, and A. Joulin, “Emerging properties in self-supervised vision transformers,” in Proceedings of the IEEE/CVF international confer- ence on computer vision, 2021, pp. 9650–9660
2021
-
[63]
Learning transferable visual models from natural language supervision,
A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agar- wal, G. Sastry, A. Askell, P . Mishkin, J. Clark et al. , “Learning transferable visual models from natural language supervision,” in International conference on machine learning . PMLR, 2021, pp. 8748–8763
2021
-
[64]
Amt: All-pairs multi-field transforms for efficient frame inter- polation,
Z. Li, Z.-L. Zhu, L.-H. Han, Q. Hou, C.-L. Guo, and M.-M. Cheng, “Amt: All-pairs multi-field transforms for efficient frame inter- polation,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 9801–9810
2023
-
[65]
Musiq: Multi- scale image quality transformer,
J. Ke, Q. Wang, Y. Wang, P . Milanfar, and F. Yang, “Musiq: Multi- scale image quality transformer,” in Proceedings of the IEEE/CVF international conference on computer vision, 2021, pp. 5148–5157
2021
-
[66]
Perceptual quality assessment of smartphone photography,
Y. Fang, H. Zhu, Y. Zeng, K. Ma, and Z. Wang, “Perceptual quality assessment of smartphone photography,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2020, pp. 3677–3686
2020
-
[67]
aesthetic-predictor,
LAION-AI, “aesthetic-predictor,” 2024, accessed: 2025- 06-04. [Online]. Available: https://github.com/LAION-AI/ aesthetic-predictor
2024
-
[68]
Vace: All- in-one video creation and editing,
Z. Jiang, Z. Han, C. Mao, J. Zhang, Y. Pan, and Y. Liu, “Vace: All- in-one video creation and editing,”arXiv preprint arXiv:2503.07598, 2025
2025 arXiv
-
[69]
Kling, “Kling,” https://kling.kuaishou.com/en, 2025, accessed: 2025-06-06, 11, 13
2025
-
[70]
Pika.art,
Pika.art, “Pika.art,” https://pika.art, 2025, accessed: 2025-06-06
2025
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.