mirror of
https://github.com/pion/mediadevices.git
synced 2026-04-23 00:07:29 +08:00
596b8c4e11
Add VNC as a video source
17 lines
451 B
Markdown
17 lines
451 B
Markdown
# VNC Library for Go
|
|
|
|
go-vnc is a VNC library for Go, initially supporting VNC clients but
|
|
with the goal of eventually implementing a VNC server.
|
|
|
|
This library implements [RFC 6143](http://tools.ietf.org/html/rfc6143).
|
|
|
|
## Usage & Installation
|
|
|
|
The library is installable via standard `go get`. The package name is `vnc`.
|
|
|
|
```
|
|
$ go get github.com/mitchellh/go-vnc
|
|
```
|
|
|
|
Documentation is available on GoDoc: http://godoc.org/github.com/mitchellh/go-vnc
|