Przeglądaj źródła

Examples: Enhanced readme

Paul-Louis Ageneau 3 lat temu
rodzic
commit
fd7d2ca0f1

+ 3 - 3
examples/README.md

@@ -9,9 +9,9 @@ This directory contains different WebRTC clients and compatible WebSocket + JSON
 - [signaling-server-python](signaling-server-python) contains a similar signaling server in Python
 - [signaling-server-rust](signaling-server-rust) contains a similar signaling server in Rust (see [lerouxrgd/datachannel-rs](https://github.com/lerouxrgd/datachannel-rs) for Rust wrappers)
 
-- [media-receiver](media-receiver) is a copy/paste demo to send the webcam from your browser receive it into gstreamer.
-- [media-sender](media-sender) is a copy/paste demo to capture the webcam with gstreamer and send it to your browser.
-- [media-sfu](media-sfu) is a copy/paste SFU demo to relay the webcam between browsers.
+- [media-receiver](media-receiver) is a copy/paste example sending the webcam from the web browser and receiving it into gstreamer.
+- [media-sender](media-sender) is a copy/paste example capturing the webcam with gstreamer and sending it to the web browser.
+- [media-sfu](media-sfu) is a copy/paste SFU relaying the webcam between web browsers.
 - [streamer](streamer) streams h264 and opus samples to web browsers (signaling-server-python is required).
 
 Additionally, it contains two debugging tools for libdatachannel with copy-pasting as signaling:

+ 1 - 1
examples/media-receiver/README.md

@@ -1,6 +1,6 @@
 # Example streaming from browser
 
-This is a copy/paste example to stream the webcam from the browser and forward it as RTP to port 5000.
+This is a copy/paste example streaming the webcam from the browser and forwarding it as RTP to port 5000.
 
 ## How to use
 

+ 1 - 1
examples/media-sender/README.md

@@ -1,6 +1,6 @@
 # Example streaming to browser
 
-This is a copy/paste example to forward a local RTP stream to the browser.
+This is a copy/paste example forwarding a local RTP stream to the browser.
 
 ## How to use