Difference between revisions of "Mainline Hardware Encoding"

From PINE64
Jump to navigation Jump to search
(Create a page documenting how to hardware encode stuff with mainline kernels)
 
m (→‎SoC Support: getting fancy with tables)
Line 6: Line 6:


{| class="wikitable plainrowheaders" border="1"
{| class="wikitable plainrowheaders" border="1"
! scope="col" | Codec
! scope="col" {{Diagonal split header|Codec|SoC}}
! scope="col" | RK3399
! scope="col" | RK3399
! scope="col" | RK3566
! scope="col" | RK3566

Revision as of 15:56, 28 April 2022

Mainline Hardware Encoding of video can be achieved through the V4L2 user-space API, for which currently only GStreamer implements the required code.

SoC Support

The following table shows the current supported codecs for encoding for each SoC. Support for decoding is separate.

SoC
Codec
RK3399 RK3566 RK3588
JPEG Yes In review No
H.264/AVC No No No
H.265/HEVC No No No

Encoding With GStreamer

With GStreamer, in general, any V4L2 control can be set using the extra-controls=foo,name=value syntax after the encode pipeline stage identifier, where foo is any name you wish which GStreamer will promptly ignore, name is the name of the V4L2 control as shown by v4l2-ctl --list-ctrls (make sure to pick the right device with -d), and value is whatever value you want to set it to.

JPEG Encoding

This example converts an input MP4 file to an output MJPEG-inside-MKV file at JPEG quality 95, without any audio.

   gst-launch-1.0 filesrc location=input.mp4 ! qtdemux name=demux demux.video_0 ! decodebin ! videoconvert ! v4l2jpegenc extra-controls=s,compression_quality=95 ! matroskamux ! filesink location=output.mkv