From 425d9c2ace202d522f69c15778507a140af2e40d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Tue, 12 Jan 2021 16:12:53 +0100 Subject: [PATCH] fix broken pipeline. --- 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 b638ad03..64cbbab1 100644 --- a/internal/capture/gst/gst.go +++ b/internal/capture/gst/gst.go @@ -34,7 +34,7 @@ const ( videoClockRate = 90000 audioClockRate = 48000 pcmClockRate = 8000 - videoSrc = "ximagesrc xid=%s show-pointer=true use-damage=false ! video/x-raw ! videoconvert ! queue ! " + videoSrc = "ximagesrc display-name=%s show-pointer=true use-damage=false ! video/x-raw ! videoconvert ! queue ! " audioSrc = "pulsesrc device=%s ! audio/x-raw,channels=2 ! audioconvert ! " )