From 389f7e0d7b47717e2f432b09426249223f08b92b Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Wed, 21 Aug 2024 09:19:39 +0200 Subject: [PATCH] wpe: fix gst-launch example wpesrc does not have num-buffers property but wpevideosrc does. Part-of: --- subprojects/gst-plugins-bad/ext/wpe/gstwpesrcbin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/ext/wpe/gstwpesrcbin.cpp b/subprojects/gst-plugins-bad/ext/wpe/gstwpesrcbin.cpp index 974ae924c6..5664aaa799 100644 --- a/subprojects/gst-plugins-bad/ext/wpe/gstwpesrcbin.cpp +++ b/subprojects/gst-plugins-bad/ext/wpe/gstwpesrcbin.cpp @@ -41,7 +41,7 @@ * ### Save the first 50 video frames generated for the GStreamer website as PNG files in /tmp * * ``` - * LIBGL_ALWAYS_SOFTWARE=true gst-launch-1.0 -v wpesrc num-buffers=50 location="https://gstreamer.freedesktop.org" ! videoconvert ! pngenc ! multifilesink location=/tmp/snapshot-%05d.png + * LIBGL_ALWAYS_SOFTWARE=true gst-launch-1.0 -v wpevideosrc num-buffers=50 location="https://gstreamer.freedesktop.org" ! videoconvert ! pngenc ! multifilesink location=/tmp/snapshot-%05d.png * ``` * *