Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 2.14 KB

README.md

File metadata and controls

77 lines (56 loc) · 2.14 KB

GiaoScreenSharing

Build Status Go Report Card GitHub release (latest by date including pre-releases) GitHub GitHub All Releases

A Cross Platform Screen Sharing tool based on UDP Multicast written in Go supporting Windows, Linux, macOS.

中文说明

Installation

Binary file

Download the binary file form the release page.

The server will share screen to client.

Building from source

  • golang: 1.13+
git clone https://github.com/wangke0809/GiaoScreenSharing.git
mkdir dist && cd dist && go build ../cmd/client/ && go build -v ../cmd/server/

Usage

server

> ./server
> start using 224.0.0.1:9999
> FPS: 12.3, Send Block:   4, Capture:  76 (ms), Diff&JPEG Compress:   3 (ms) Send: 0.259 (ms)

See more configuration:

> ./server -h
> Usage of ./server:
    -block int
          screen transfer block size (default 150)
    -display int
          screen display index
    -host string
          udp host ip (default "224.0.0.1")
    -port int
          udp listen port (default 9999)
    -quality int
          jpeg compress quality (default 75)

Client

> ./client

See more configuration:

> ./client -h
> Usage of ./client:
    -host string
          udp host ip (default "224.0.0.1")
    -port int
          udp listen port (default 9999)