server example show black screen in client #6

Closed
opened 2020-01-19 22:14:32 +03:00 by muka · 6 comments
muka commented 2020-01-19 22:14:32 +03:00 (Migrated from github.com)

Hi,
great library!

I am trying to get the server example to work, however I just see a black screen on my client.

To my understanding, the im variable is set at every timer tick but it is not passed to the server channel (?)

Thank you
Regards

Hi, great library! I am trying to get the server example to work, however I just see a black screen on my client. To my understanding, the `im` variable is set at every timer tick but it is not passed to the server channel (?) Thank you Regards
vtolstov commented 2020-01-20 14:54:13 +03:00 (Migrated from github.com)

yes, example may be from bradfitz and after some rewriting vnc package i'm forget to fix it. thanks

yes, example may be from bradfitz and after some rewriting vnc package i'm forget to fix it. thanks
vtolstov commented 2020-01-21 08:58:02 +03:00 (Migrated from github.com)

i'm fix server example, please check it now.

i'm fix server example, please check it now.
muka commented 2020-01-21 20:09:34 +03:00 (Migrated from github.com)

Works great!

I will try also different encoding (there are other repos implementing also video codec encodings), hope to be able to provide back some more examples..

Thank you

Works great! I will try also different encoding (there are other repos implementing also video codec encodings), hope to be able to provide back some more examples.. Thank you
vtolstov commented 2020-01-21 23:17:25 +03:00 (Migrated from github.com)

What kind of encoding do you mean?

What kind of encoding do you mean?
muka commented 2020-01-22 23:21:55 +03:00 (Migrated from github.com)

I seen the issue #5 which refer to this repo that seems to support more encodings https://github.com/amitbet/vncproxy/blob/master/proxy/proxy.go#L133

The additional encoding are those (just based on their names, sorry if wrong)

  • EncLedStatePseudo
  • RREEncoding
  • ZLibEncoding
  • ZRLEEncoding
  • CoRREEncoding
  • HextileEncoding
I seen the issue #5 which refer to this repo that seems to support more encodings https://github.com/amitbet/vncproxy/blob/master/proxy/proxy.go#L133 The additional encoding are those (just based on their names, sorry if wrong) - EncLedStatePseudo - RREEncoding - ZLibEncoding - ZRLEEncoding - CoRREEncoding - HextileEncoding
vtolstov commented 2020-01-23 01:41:46 +03:00 (Migrated from github.com)

Thanks, yes i think about adding some more encodings, but i want not to copy all of them, but only really useful. For web - tightpng is the best. For standalone clients - mostly used in this order:
EncZRLE EncCopyRect EncJRLE EncJPEG EncTRLE EncZlib EncHextile EncRRE EncRaw EncClientRedirect EncCursorPseudo EncDesktopSizePseudo
so may be in the near feature i'm add some more of them and other pseudo encodings

Thanks, yes i think about adding some more encodings, but i want not to copy all of them, but only really useful. For web - tightpng is the best. For standalone clients - mostly used in this order: EncZRLE EncCopyRect EncJRLE EncJPEG EncTRLE EncZlib EncHextile EncRRE EncRaw EncClientRedirect EncCursorPseudo EncDesktopSizePseudo so may be in the near feature i'm add some more of them and other pseudo encodings
Sign in to join this conversation.
No description provided.