From patchwork Wed Aug 25 10:27:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13482 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id DDEA2BD87D for ; Wed, 25 Aug 2021 10:27:53 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3EB1F688A5; Wed, 25 Aug 2021 12:27:53 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="j2AqjBGc"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id D18D760259 for ; Wed, 25 Aug 2021 12:27:51 +0200 (CEST) Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 6AC8B6EE; Wed, 25 Aug 2021 12:27:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1629887271; bh=dGk1keBDIzTyGW7mxWNMCsRcpbDlQgjBCDQWFF9S/eE=; h=From:To:Cc:Subject:Date:From; b=j2AqjBGch/65/rUz01lpsaMs3wHByw1UULE6rwlk1fx3ttPF0NV2kza8NvoMB2Z1Y U2nThh+ppiOPM3+n7yHLPBAq8c/udhJhVgOK0YjCR8FmWJj+UrlC783eBGAfy2yNT6 OGa4Kv92A1p7yZVdDyaSHqViwXe0l9DyI1ZZHnD0= From: Kieran Bingham To: libcamera devel Date: Wed, 25 Aug 2021 11:27:48 +0100 Message-Id: <20210825102748.3738346-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] README.rst: Update gstreamer element guidance X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The Gstreamer gstlibcamerasrc element operates better with the glimagesink, as it can perform direct renders or hardware accellerated image format conversion. Further extend the sample commands to demonstrate how to specify a fixed width and height parameter to the pipeline. Signed-off-by: Kieran Bingham --- README.rst | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index fcf0f47f14c5..61ba8418a62a 100644 --- a/README.rst +++ b/README.rst @@ -94,7 +94,7 @@ Using GStreamer plugin ~~~~~~~~~~~~~~~~~~~~~~ To use GStreamer plugin from source tree, set the following environment so that -GStreamer can find it. +GStreamer can find it, (This can be skipped when libcamera is installed) export GST_PLUGIN_PATH=$(pwd)/build/src/gstreamer @@ -104,7 +104,22 @@ onto the default video display element on your system. .. code:: - gst-launch-1.0 libcamerasrc camera-name="Camera 1" ! videoconvert ! autovideosink + gst-launch-1.0 libcamerasrc camera-name="Camera 1" ! glimagesink + +To show the first camera found you can omit the camera-name property, or you +can identify the camera and capabilities using: + +.. code:: + + gst-device-monitor-1.0 Video + +This will show the supported stream sizes which can be manually selected if +desired with a pipeline such as: + +.. code:: + + gst-launch-1.0 libcamerasrc ! 'video/x-raw,width=1280,height=720' ! \ + glimagesink .. section-end-getting-started