You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/components/nodes/video_encoder.rst
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,8 +77,16 @@ Usage
77
77
Limitations
78
78
###########
79
79
80
-
- HW limit for the encoder is: 3840x2160 pixels at 30FPS or :code:`248 million pixels/second`. The resolution and frame rate can be divided into multiple streams - but the sum of all the pixels/second needs to be below 248 million.
80
+
For **H.264 / H.265 encoding**, we have the following limits:
81
+
- **248 million pixels/second** limit for the encoder or 3840x2160 pixels at 30FPS. The resolution and frame rate can be divided into multiple streams - but the sum of all the pixels/second needs to be below 248 million.
81
82
- Due to a HW constraint, video encoding can be done only on frames whose width values are multiples of 32.
83
+
- 4096 pixel max width for a frame.
84
+
- Maximum of 3 parallel encoding streams.
85
+
86
+
The **MJPEG encoder** is capable of 16384x8192 resolution at 500Mpixel/second. From our testing, we were able to encode
87
+
4K at 30FPS and 2x 800P at 55FPS.
88
+
89
+
Note the processing resources of the encoder **are shared** between H.26x and JPEG.
0 commit comments