在我的嵌入式linux设备上启动一个X11VNC服务器,并与一个VNC客户端(TigerVNC或Guacamole)连接。VNC服务器将帧缓冲区直接流到端口5901。当游标在GUI (见视频)上移动时会跳得很厉害。

x11vnc -rfbport 5901 -no6 -rawfb /dev/fb0 -scale 640x480x16x1280 -verbose -cursor none -nodragging -pipeinput UINPUT:direct_abs=/dev/uinput尝试了许多附加参数但没有成功:-pointer_mode n -extra_fbur n -visual TrueColor:32 -noshm
发布于 2021-11-30 12:01:35
我怀疑问题出在默认加速上。
注意:默认的加速是2.0,因为它似乎同时嵌入了X和qt,通常(但并不总是)使用这个值。
因此,编辑的x11vnc命令包括accel=1.0
x11vnc -rfbport 5901 -no6 -rawfb /dev/fb0 -verbose -cursor none -nodragging -pipeinput UINPUT:direct_abs=/dev/uinput,accel=1.0 -foreverhttps://stackoverflow.com/questions/69885272
复制相似问题