mirror of
https://github.com/saily/vnc-recorder.git
synced 2025-04-27 18:25:13 +00:00
236 lines
5.4 KiB
Go
236 lines
5.4 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
vnc "github.com/amitbet/vnc2video"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli/v2"
|
|
"net"
|
|
|
|
"os"
|
|
"os/exec"
|
|
"os/signal"
|
|
"path"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
app := &cli.App{
|
|
Name: path.Base(os.Args[0]),
|
|
Usage: "Connect to a vnc server and record the screen to a video.",
|
|
Version: "0.3.0",
|
|
Authors: []*cli.Author{
|
|
&cli.Author{
|
|
Name: "Daniel Widerin",
|
|
Email: "daniel@widerin.net",
|
|
},
|
|
},
|
|
Action: recorder,
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "ffmpeg",
|
|
Value: "ffmpeg",
|
|
Usage: "Which ffmpeg executable to use",
|
|
EnvVars: []string{"VR_FFMPEG_BIN"},
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "host",
|
|
Value: "localhost",
|
|
Usage: "VNC host",
|
|
EnvVars: []string{"VR_VNC_HOST"},
|
|
},
|
|
&cli.IntFlag{
|
|
Name: "port",
|
|
Value: 5900,
|
|
Usage: "VNC port",
|
|
EnvVars: []string{"VR_VNC_PORT"},
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "password",
|
|
Value: "secret",
|
|
Usage: "Password to connect to the VNC host",
|
|
EnvVars: []string{"VR_VNC_PASSWORD"},
|
|
},
|
|
&cli.IntFlag{
|
|
Name: "framerate",
|
|
Value: 30,
|
|
Usage: "Framerate to record",
|
|
EnvVars: []string{"VR_FRAMERATE"},
|
|
},
|
|
&cli.IntFlag{
|
|
Name: "crf",
|
|
Value: 35,
|
|
Usage: "Constant Rate Factor (CRF) to record with",
|
|
EnvVars: []string{"VR_CRF"},
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "outfile",
|
|
Value: "output.mp4",
|
|
Usage: "Output file to record to.",
|
|
EnvVars: []string{"VR_OUTFILE"},
|
|
},
|
|
},
|
|
}
|
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
logrus.WithError(err).Fatal("recording failed.")
|
|
}
|
|
}
|
|
|
|
func recorder(c *cli.Context) error {
|
|
address := fmt.Sprintf("%s:%d", c.String("host"), c.Int("port"))
|
|
dialer, err := net.DialTimeout("tcp", address, 5*time.Second)
|
|
if err != nil {
|
|
logrus.WithError(err).Error("connection to VNC host failed.")
|
|
return err
|
|
}
|
|
defer dialer.Close()
|
|
|
|
logrus.WithField("address", address).Info("connection established.")
|
|
|
|
// Negotiate connection with the server.
|
|
cchServer := make(chan vnc.ServerMessage)
|
|
cchClient := make(chan vnc.ClientMessage)
|
|
errorCh := make(chan error)
|
|
|
|
var secHandlers []vnc.SecurityHandler
|
|
if c.String("password") == "" {
|
|
secHandlers = []vnc.SecurityHandler{
|
|
&vnc.ClientAuthNone{},
|
|
}
|
|
} else {
|
|
secHandlers = []vnc.SecurityHandler{
|
|
&vnc.ClientAuthVNC{Password: []byte(c.String("password"))},
|
|
}
|
|
}
|
|
|
|
ccflags := &vnc.ClientConfig{
|
|
SecurityHandlers: secHandlers,
|
|
DrawCursor: true,
|
|
PixelFormat: vnc.PixelFormat32bit,
|
|
ClientMessageCh: cchClient,
|
|
ServerMessageCh: cchServer,
|
|
Messages: vnc.DefaultServerMessages,
|
|
Encodings: []vnc.Encoding{
|
|
&vnc.RawEncoding{},
|
|
&vnc.TightEncoding{},
|
|
&vnc.HextileEncoding{},
|
|
&vnc.ZRLEEncoding{},
|
|
&vnc.CopyRectEncoding{},
|
|
&vnc.CursorPseudoEncoding{},
|
|
&vnc.CursorPosPseudoEncoding{},
|
|
&vnc.ZLibEncoding{},
|
|
&vnc.RREEncoding{},
|
|
},
|
|
ErrorCh: errorCh,
|
|
}
|
|
|
|
vncConnection, err := vnc.Connect(context.Background(), dialer, ccflags)
|
|
defer vncConnection.Close()
|
|
if err != nil {
|
|
logrus.WithError(err).Error("connection negotiation to VNC host failed.")
|
|
return err
|
|
}
|
|
screenImage := vncConnection.Canvas
|
|
|
|
ffmpegPath, err := exec.LookPath(c.String("ffmpeg"))
|
|
if err != nil {
|
|
logrus.WithError(err).Error("ffmpeg binary not found.")
|
|
return err
|
|
}
|
|
logrus.WithField("ffmpeg", ffmpegPath).Info("ffmpeg binary for recording found")
|
|
|
|
vcodec := &X264ImageCustomEncoder{
|
|
FFMpegBinPath: ffmpegPath,
|
|
Framerate: c.Int("framerate"),
|
|
ConstantRateFactor: c.Int("crf"),
|
|
}
|
|
|
|
//goland:noinspection GoUnhandledErrorResult
|
|
go vcodec.Run(c.String("outfile"))
|
|
|
|
for _, enc := range ccflags.Encodings {
|
|
myRenderer, ok := enc.(vnc.Renderer)
|
|
|
|
if ok {
|
|
myRenderer.SetTargetImage(screenImage)
|
|
}
|
|
}
|
|
|
|
vncConnection.SetEncodings([]vnc.EncodingType{
|
|
vnc.EncCursorPseudo,
|
|
vnc.EncPointerPosPseudo,
|
|
vnc.EncCopyRect,
|
|
vnc.EncTight,
|
|
vnc.EncZRLE,
|
|
vnc.EncHextile,
|
|
vnc.EncZlib,
|
|
vnc.EncRRE,
|
|
})
|
|
|
|
go func() {
|
|
for {
|
|
timeStart := time.Now()
|
|
|
|
vcodec.Encode(screenImage.Image)
|
|
|
|
timeTarget := timeStart.Add((1000 / time.Duration(vcodec.Framerate)) * time.Millisecond)
|
|
timeLeft := timeTarget.Sub(time.Now())
|
|
if timeLeft > 0 {
|
|
time.Sleep(timeLeft)
|
|
}
|
|
}
|
|
}()
|
|
|
|
sigCh := make(chan os.Signal, 1)
|
|
signal.Notify(sigCh,
|
|
os.Interrupt,
|
|
syscall.SIGHUP,
|
|
syscall.SIGINT,
|
|
syscall.SIGTERM,
|
|
syscall.SIGQUIT,
|
|
syscall.SIGKILL,
|
|
)
|
|
|
|
frameBufferReq := 0
|
|
timeStart := time.Now()
|
|
|
|
for {
|
|
select {
|
|
case err := <-errorCh:
|
|
panic(err)
|
|
case msg := <-cchClient:
|
|
logrus.WithFields(logrus.Fields{
|
|
"messageType": msg.Type(),
|
|
"message": msg,
|
|
}).Debug("client message received.")
|
|
|
|
case msg := <-cchServer:
|
|
if msg.Type() == vnc.FramebufferUpdateMsgType {
|
|
secsPassed := time.Now().Sub(timeStart).Seconds()
|
|
frameBufferReq++
|
|
reqPerSec := float64(frameBufferReq) / secsPassed
|
|
logrus.WithFields(logrus.Fields{
|
|
"reqs": frameBufferReq,
|
|
"seconds": secsPassed,
|
|
"Req Per second": reqPerSec,
|
|
}).Debug("framebuffer update")
|
|
|
|
reqMsg := vnc.FramebufferUpdateRequest{Inc: 1, X: 0, Y: 0, Width: vncConnection.Width(), Height: vncConnection.Height()}
|
|
reqMsg.Write(vncConnection)
|
|
}
|
|
case signal := <-sigCh:
|
|
if signal != nil {
|
|
logrus.WithField("signal", signal).Info("signal received.")
|
|
vcodec.Close()
|
|
// give some time to write the file
|
|
time.Sleep(time.Second * 1)
|
|
os.Exit(0)
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|