Papers › Towards Practical Real-Time Neural Video Compression

Towards Practical Real-Time Neural Video Compression

28 Feb 2025CVPR 2025 1arXiv:2502.20762archive 2025-07-28

Zhaoyang Jia, Bin Li, Jiahao Li, Wenxuan Xie, Linfeng Qi, Houqiang Li, Yan Lu

We introduce a practical real-time neural video codec (NVC) designed to deliver high compression ratio, low latency and broad versatility. In practice, the coding speed of NVCs depends on 1) computational costs, and 2) non-computational operational costs, such as memory I/O and the number of function calls. While most efficient NVCs prioritize reducing computational cost, we identify operational cost as the primary bottleneck to achieving higher coding speed. Leveraging this insight, we introduce a set of efficiency-driven design improvements focused on minimizing operational costs. Specifically, we employ implicit temporal modeling to eliminate complex explicit motion modules, and use single low-resolution latent representations rather than progressive downsampling. These innovations significantly accelerate NVC without sacrificing compression quality. Additionally, we implement model integerization for consistent cross-device coding and a module-bank-based rate control scheme to improve practical adaptability. Experiments show our proposed DCVC-RT achieves an impressive average encoding/decoding speed at 125.2/112.8 fps (frames per second) for 1080p video, while saving an average of 21% in bitrate compared to H.266/VTM. The code is available at https://github.com/microsoft/DCVC.

PaperPDFConference PDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2502.20762")

Code

Syntology Ran 21 of 34 code samples harvested from 1 repository linked to this paper; 13 have no recorded run. Of those that ran: 21 ran with no contract checked.

By repository: official repository: 34 samples from 1 repository, 21 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

microsoft/dcvc officialmentioned in papermentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

34 samples harvested; 21 ran; 0 honoured the contract we drafted; 13 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

21ran
13unverified

Licence: 0 of the 34 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from microsoft/DCVC. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

BitEstimator microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · 6632b3d06d6dc73d · report
Bitparm microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran · metamorphic tier: invariant MIT (permissive) · 10192b8edda5270f · report
Decoder microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · b3341ca1d0efc886 · report
HyperEncoder microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · 4d40a1c48bbcac69 · report
PriorFusion microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · b035ef7ee62dfab7 · report
ReconGeneration microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · 31e2dd2ac8c92243 · report
ResidualBlockWithStride2 microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · c4f96036562670f5 · report
SubpelConv2x microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · 58d7f8bf0a025b7f · report
WSiLU microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran · metamorphic tier: invariant fingerprinted MIT (permissive) · 2587865886a4218e · report
WSiLUChunkAdd microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran · metamorphic tier: invariant fingerprinted MIT (permissive) · 9b36262e9f957f07 · report
add_and_multiply microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran fingerprinted MIT (permissive) · 1a041ac6f57a560a · report
bias_quant microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · 3827431831b55e09 · report
build_index_dec microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · 67fb651ec943a810 · report
build_index_enc microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · acf48a659d8b34ad · report
clamp_reciprocal_with_quant microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran fingerprinted MIT (permissive) · fd74a46db0b38360 · report
combine_for_reading_2x microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · d1a13206c36a5b35 · report
process_with_mask microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · 0688c213d8914d99 · report
replicate_pad microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran fingerprinted MIT (permissive) · 6f0a1e70b507bf99 · report
restore_y_2x microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran MIT (permissive) · badd304bd52c1e78 · report
restore_y_4x microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran fingerprinted MIT (permissive) · 04830909a5b42ed4 · report
round_and_to_int8 microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository ran fingerprinted MIT (permissive) · a05c9e97653d2a48 · report
CompressionModel microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 8ab5a894dae3d87a · report
DMC microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · d403d2e9510c5557 · report
DepthConvBlock microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · d2630b2bf52e05d7 · report
Encoder microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 6a89e2188117f78d · report
EntropyCoder microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 16d83cb522ff6878 · report
FeatureExtractor microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 8d71934d46c53dd9 · report
GaussianEncoder microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · af985b6d3be368d9 · report
HyperDecoder microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 49f35ea395c21d4e · report
RefFrame microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · c4c8570c58f5e745 · report
ResidualBlockUpsample microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 8b42cfe104e1ebce · report
SpatialPrior microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 06f77d72d6ef2bf1 · report
bias_pixel_shuffle_8 microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 6762b17743bfdfa2 · report
restore_y_2x_with_cat_after microsoft/DCVC/DCVC-family/DCVC-RT/src/models/video_model.py official repository unverified MIT (permissive) · 03ac53f5f2eabc07 · report

Tasks

Video Compression

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

SETSPEED

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections