From b612ce192e557688f637d44346df6dc269d7cc9d Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Wed, 14 Oct 2020 10:12:37 +0200 Subject: [PATCH] Clarify gstreamer in README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3bffbd6..f568b2d 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ For container, you may use MPEGTS for now (will change). ### With GStreamer -To stream X11 screen, +To stream your X11 screen, ```bash gst-launch-1.0 ximagesrc startx=0 show-pointer=true use-damage=0 \ @@ -73,6 +73,8 @@ gst-launch-1.0 ximagesrc startx=0 show-pointer=true use-damage=0 \ ! srtserversink uri=srt://127.0.0.1:9710/ latency=1000000 streamid=demo:demo ``` +*This might not work at the moment.* + ## Playing stream ### With a web browser and WebRTC @@ -109,7 +111,7 @@ As MPV uses ffmpeg libav, support for SRT streams can be easily added. ### ld returns an error when launching ghostream -When using `libsrt-gnutls-dev` rather than `libsrt-openssl-dev` on Debian/Ubuntu, +When missing `libsrt-openssl-dev` on Debian/Ubuntu, then srtgo package is unable to build. ```bash @@ -121,8 +123,6 @@ then srtgo package is unable to build. collect2: error: ld returned 1 exit status ``` -The solution is to switch to `libsrt-openssl-dev`. - ## References - Phil Cluff (2019), *[Streaming video on the internet without MPEG.](https://mux.com/blog/streaming-video-on-the-internet-without-mpeg/)*