From 5c121bc8d42ccc3c39f2574f88354117f374e551 Mon Sep 17 00:00:00 2001 From: Alan Jeffrey Date: Wed, 29 Jul 2020 17:38:35 -0500 Subject: [PATCH] Update gstreamer plugin README: use the -e flag --- ports/gstplugin/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ports/gstplugin/README.md b/ports/gstplugin/README.md index 833545f001c..dd1fa87fea1 100644 --- a/ports/gstplugin/README.md +++ b/ports/gstplugin/README.md @@ -28,7 +28,7 @@ cp target/release/libgstservoplugin.* target/gstplugins To run locally: ``` GST_PLUGIN_PATH=target/gstplugins \ - gst-launch-1.0 servowebsrc \ + gst-launch-1.0 -e servowebsrc \ ! video/x-raw\(memory:GLMemory\),framerate=50/1,width=1920,height=1080,format=RGBA \ ! glimagesink rotate-method=vertical-flip ``` @@ -36,7 +36,7 @@ GST_PLUGIN_PATH=target/gstplugins \ To stream over the network: ``` GST_PLUGIN_PATH=target/gstplugins \ - gst-launch-1.0 servowebsrc \ + gst-launch-1.0 -e servowebsrc \ ! video/x-raw\(memory:GLMemory\),framerate=50/1,width=512,height=256 \ ! glcolorconvert \ ! gldownload \ @@ -49,7 +49,7 @@ GST_PLUGIN_PATH=target/gstplugins \ To save to a file: ``` GST_PLUGIN_PATH=target/gstplugins \ - gst-launch-1.0 servowebsrc \ + gst-launch-1.0 -e servowebsrc \ ! video/x-raw\(memory:GLMemory\),framerate=50/1,width=512,height=256 \ ! glcolorconvert \ ! gldownload \