ternshare

Results 4 comments of ternshare

FYI: https://github.com/amitbet/vnc2video/issues/9#issuecomment-1216650177

I had the same problem with x11vnc server and I found it just happen after copying text, which relates to ServerCutText message of the RFB protocol. You can change the...

It happened to me when vnc-recorder connect to x11vnc server first time. I found modifying the ServerCutText struct could solve the problem: https://github.com/amitbet/vnc2video/issues/9#issuecomment-1216650177

Have a try using zrle encoding instead of tight, just comment the code in main.go as below: ```go ccflags := &vnc.ClientConfig{ SecurityHandlers: secHandlers, DrawCursor: true, PixelFormat: vnc.PixelFormat32bit, ClientMessageCh: cchClient, ServerMessageCh:...