From ecabf02b1b725efd8fd05826c0b541df0061d370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Brzezi=C5=84ski?= Date: Fri, 29 Sep 2023 17:03:21 +0200 Subject: [PATCH] webrtc: Fix paths in README Part-of: --- net/webrtc/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/webrtc/README.md b/net/webrtc/README.md index a8bedb57..1ddbb4ea 100644 --- a/net/webrtc/README.md +++ b/net/webrtc/README.md @@ -77,6 +77,7 @@ cargo build Open three terminals. In the first, run: ``` shell +cd signalling WEBRTCSINK_SIGNALLING_SERVER_LOG=debug cargo run --bin gst-webrtc-signalling-server ``` @@ -89,7 +90,7 @@ python3 -m http.server -d www/ In the third, run: ``` shell -export GST_PLUGIN_PATH=$PWD/target/debug:$GST_PLUGIN_PATH +export GST_PLUGIN_PATH=/target/debug:$GST_PLUGIN_PATH gst-launch-1.0 webrtcsink name=ws videotestsrc ! ws. audiotestsrc ! ws. ```