As defined by: https://github.com/rfbproto/rfbproto/blob/master/rfbproto.rst#open-h-264-encoding
The noVNC HTML application recently added support for this encoding. There is also an open pull request to add audio support to noVNC: https://github.com/novnc/noVNC/pull/1952 With that in place, the web based VNC console is good enough to display a VM showing a video with reasonable bandwidth. Possible improvements: - Dynamic switching to/from H264 mode at high change rates - do not compute all rects in vnc_update_client to reduce CPU load We may also extend the RFB Audio protocol with "opus" encoding, because uncompressed audio need too much bandwidth. Changes in v3: - add license header - sqash patch to remove libavcodec prefix - use gst_clear_object and goto error - use single g_object_set - g_autoptr/g_new0 - document vnc_h264_send_framebuffer_update returnm value - avoid mixed declarations - use loop to retrieve samples - initialize gst during argument processing - add hardware encoders Changes in v2: - cleanup: h264: remove wrong libavcodec_ prefix from function names - search for available h264 encoder, and only enable h264 if a encoder is available - new vnc option to configure h264 at server side Dietmar Maurer (9): new configure option to enable gstreamer add vnc h264 encoder vnc: h264: send additional frames after the display is clean h264: search for available h264 encoder h264: new vnc option to configure h264 at server side h264: add hardware encoders h264: do not reduce vnc update speed while we have an active h264 stream vnc: initialize gst during argument processing h264: register shutdown notifiers, stop pipeline in destroy_encoder_context meson.build | 10 + meson_options.txt | 2 + scripts/meson-buildoptions.sh | 5 +- system/vl.c | 8 + ui/meson.build | 1 + ui/vnc-enc-h264.c | 401 ++++++++++++++++++++++++++++++++++ ui/vnc-jobs.c | 49 +++-- ui/vnc.c | 63 +++++- ui/vnc.h | 30 +++ 9 files changed, 551 insertions(+), 18 deletions(-) create mode 100644 ui/vnc-enc-h264.c -- 2.39.5