LED Wall Data Rate and Processor Ports

The pixel count, uncompressed data rate, and processor port count for an LED wall.

Run the calculator

Example

You enter

You get

Details, formula, and sources

A wall's processor budget is counted in pixels per output port, not in resolution. A gigabit sending-card port carries a fixed pixel budget -- commonly around 650,000 pixels at 60 Hz, and proportionally fewer as refresh rate or bit depth rises -- and the wall is divided among however many ports that takes. The consequence is that two walls with the same physical size but different pixel pitches need very different amounts of processing, and the finer wall may need a second processor entirely. That is a fact about the processor rather than about the panels, which is exactly why it is missed when a wall is quoted by panel count. The data-rate line is the sanity check on the source side, and it says whether the incoming signal format can actually carry the wall. A wall built out to 3,840 by 2,160 is 8,294,400 pixels, which at 8-bit color and 60 Hz is 8,294,400 x 24 x 60 / 1e9 = 11.94 Gbps and takes thirteen 650,000-pixel ports -- more than one sending card carries, so this wall needs two. The same 11.94 Gbps sits right at the edge of what a single HDMI 2.0 or 12G-SDI link will pass, so moving to 10-bit takes the rate to 14.93 Gbps and the single-link source format has to change. A planning estimate; the processor manufacturer's published per-port capacity at the operating refresh and bit depth, and the panel maker's own mapping, govern the build.

total_pixels = width_px x height_px; data_rate_gbps = total_pixels x bit_depth x 3 x refresh_hz / 1e9; ports_needed = ceil(total_pixels / pixels_per_port); spare_pixels = ports_needed x pixels_per_port - total_pixels.

Uncompressed video data rate = pixels x bit depth x 3 channels x refresh, and processor port count = ceil(pixels / pixels per port), by name; public arithmetic, with the per-port pixel budget the processor manufacturer's published figure at the operating refresh and bit depth, cited not reproduced. The processor maker's capacity and the panel maker's mapping govern the build.

The data rate is arithmetic on the raster. The per-port pixel budget is the processor manufacturer's published figure, entered by the user rather than bundled.

Estimate. AHJ and licensed professional govern.

Field names used by the API: width_px, height_px, bit_depth, refresh_hz, pixels_per_port, total_pixels, data_rate_gbps, ports_needed, spare_pixels

Related tools