From c75191edeb68b76aa17d4bce39f55167f1f81be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Tue, 12 Jan 2021 16:25:14 +0100 Subject: [PATCH] capture: hide pointer. --- internal/capture/gst/gst.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/capture/gst/gst.go b/internal/capture/gst/gst.go index d2b75d8f..31b9e504 100644 --- a/internal/capture/gst/gst.go +++ b/internal/capture/gst/gst.go @@ -33,7 +33,7 @@ const ( videoClockRate = 90000 audioClockRate = 48000 pcmClockRate = 8000 - videoSrc = "ximagesrc display-name=%s show-pointer=true use-damage=false ! video/x-raw ! videoconvert ! queue ! " + videoSrc = "ximagesrc display-name=%s show-pointer=false use-damage=false ! video/x-raw ! videoconvert ! queue ! " audioSrc = "pulsesrc device=%s ! audio/x-raw,channels=2 ! audioconvert ! " appSink = " ! appsink name=appsink" )