mirror of
https://github.com/sipeed/NanoKVM.git
synced 2026-09-11 00:22:56 -05:00
- H.264 WebRTC: Refactored to significantly reduce video latency - H.264 Direct: Optimized data transmission; data parsing now continues correctly even when the tab is in the background - MJPEG: Refactored to ensure the correct data length is sent Bug Fixes - Fixed an issue where certain keyboard modifier keys were not recognized - Fixed vertical mouse cursor drift when the page is zoomed in or out Optimizations - Optimized HID write logic and updated the HID reset mechanism - Added support for deleting images - Added a Swap Memory option to the Tailscale page - Added a confirmation dialog when uninstalling Tailscale to prevent accidental removal - Improved the logic for updating the web page title - Improved the UI for the Clipboard, Settings, Image Mounting, and App Update pages Security - Added a mandatory delay after failed login attempts to prevent brute-force attacks - Updated dependencies to patch known security vulnerabilities
113 lines
2.1 KiB
Go
113 lines
2.1 KiB
Go
package webrtc
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
|
|
"github.com/gorilla/websocket"
|
|
"github.com/pion/rtp"
|
|
"github.com/pion/rtp/codecs"
|
|
"github.com/pion/webrtc/v4"
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"sync"
|
|
)
|
|
|
|
func NewClient(ws *websocket.Conn, videoConn *webrtc.PeerConnection) *Client {
|
|
return &Client{
|
|
ws: ws,
|
|
video: videoConn,
|
|
mutex: sync.Mutex{},
|
|
}
|
|
}
|
|
|
|
func (c *Client) WriteMessage(event string, data string) error {
|
|
c.mutex.Lock()
|
|
defer c.mutex.Unlock()
|
|
|
|
message := &Message{
|
|
Event: event,
|
|
Data: data,
|
|
}
|
|
|
|
if err := c.ws.WriteJSON(message); err != nil {
|
|
log.Errorf("failed to send message %s: %v", event, err)
|
|
return err
|
|
}
|
|
|
|
log.Debugf("sent message %s", event)
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) ReadMessage() (*Message, error) {
|
|
_, raw, err := c.ws.ReadMessage()
|
|
if err != nil {
|
|
log.Errorf("failed to read message: %v", err)
|
|
return nil, err
|
|
}
|
|
|
|
var message Message
|
|
if err := json.Unmarshal(raw, &message); err != nil {
|
|
log.Errorf("failed to unmarshal message: %v", err)
|
|
return nil, nil
|
|
}
|
|
|
|
return &message, nil
|
|
}
|
|
|
|
func (c *Client) AddTrack() error {
|
|
// video track
|
|
videoTrack, err := webrtc.NewTrackLocalStaticRTP(
|
|
webrtc.RTPCodecCapability{MimeType: webrtc.MimeTypeH264},
|
|
"video",
|
|
"pion-video",
|
|
)
|
|
if err != nil {
|
|
log.Errorf("failed to create video track: %s", err)
|
|
return err
|
|
}
|
|
|
|
videoPacketizer := rtp.NewPacketizer(
|
|
1200,
|
|
100,
|
|
0x1234ABCD,
|
|
&codecs.H264Payloader{},
|
|
rtp.NewRandomSequencer(),
|
|
90000,
|
|
)
|
|
if videoPacketizer == nil {
|
|
err := errors.New("failed to create rtp packetizer")
|
|
log.Error(err)
|
|
return err
|
|
}
|
|
|
|
videoSender, err := c.video.AddTrack(videoTrack)
|
|
if err != nil {
|
|
log.Errorf("failed to add video track: %s", err)
|
|
return err
|
|
}
|
|
go startRTCPReader(videoSender)
|
|
|
|
track := &Track{
|
|
videoPacketizer: videoPacketizer,
|
|
video: videoTrack,
|
|
}
|
|
track.updateExtension()
|
|
|
|
c.mutex.Lock()
|
|
c.track = track
|
|
c.mutex.Unlock()
|
|
|
|
return nil
|
|
}
|
|
|
|
func startRTCPReader(sender *webrtc.RTPSender) {
|
|
rtcpBuf := make([]byte, 1500)
|
|
for {
|
|
if _, _, err := sender.Read(rtcpBuf); err != nil {
|
|
log.Debugf("RTCP reader error: %v", err)
|
|
return
|
|
}
|
|
}
|
|
}
|