From e1242e8f08f2f7fed855443e7dfeb15f1d154de9 Mon Sep 17 00:00:00 2001 From: Sean DuBois Date: Wed, 3 Jan 2024 13:16:29 -0500 Subject: [PATCH] Update docs `pion-WebRTC` -> `Pion WebRTC` --- gocv-receive/README.md | 2 +- gocv-receive/main.go | 2 +- gstreamer-receive/README.md | 2 +- gstreamer-receive/jsfiddle/demo.details | 2 +- gstreamer-receive/main.go | 2 +- gstreamer-send-offer/README.md | 4 ++-- gstreamer-send-offer/main.go | 2 +- gstreamer-send/README.md | 2 +- gstreamer-send/jsfiddle/demo.details | 2 +- gstreamer-send/main.go | 2 +- janus-gateway/README.md | 4 ++-- janus-gateway/streaming/main.go | 2 +- janus-gateway/video-room/main.go | 2 +- save-to-webm/README.md | 2 +- save-to-webm/main.go | 2 +- twitch/main.go | 2 +- 16 files changed, 18 insertions(+), 18 deletions(-) diff --git a/gocv-receive/README.md b/gocv-receive/README.md index e0bb27ee..a57e36da 100644 --- a/gocv-receive/README.md +++ b/gocv-receive/README.md @@ -36,4 +36,4 @@ Copy the text that `gocv-receive` just emitted and copy into second text area ### Hit 'Start Session' in jsfiddle, enjoy your media! Your video and/or audio should popup automatically, and will continue playing until you close the application. -Congrats, you have used pion-WebRTC! Now start building something cool +Congrats, you have used Pion WebRTC! Now start building something cool diff --git a/gocv-receive/main.go b/gocv-receive/main.go index f1386bca..af9100a5 100644 --- a/gocv-receive/main.go +++ b/gocv-receive/main.go @@ -133,7 +133,7 @@ func createWebRTCConn(ffmpegIn io.Writer) { panic(err) } - // Everything below is the pion-WebRTC API! Thanks for using it ❤️. + // Everything below is the Pion WebRTC API! Thanks for using it ❤️. // Prepare the configuration config := webrtc.Configuration{ diff --git a/gstreamer-receive/README.md b/gstreamer-receive/README.md index f4034b67..d80be05e 100644 --- a/gstreamer-receive/README.md +++ b/gstreamer-receive/README.md @@ -34,4 +34,4 @@ Copy the text that `gstreamer-receive` just emitted and copy into second text ar ### Hit 'Start Session' in jsfiddle, enjoy your media! Your video and/or audio should popup automatically, and will continue playing until you close the application. -Congrats, you have used pion-WebRTC! Now start building something cool +Congrats, you have used Pion WebRTC! Now start building something cool diff --git a/gstreamer-receive/jsfiddle/demo.details b/gstreamer-receive/jsfiddle/demo.details index 05b7527f..5f6dfc5e 100644 --- a/gstreamer-receive/jsfiddle/demo.details +++ b/gstreamer-receive/jsfiddle/demo.details @@ -3,6 +3,6 @@ # SPDX-License-Identifier: MIT name: gstreamer-receive -description: Example of using pion-WebRTC to play video using GStreamer +description: Example of using Pion WebRTC to play video using GStreamer authors: - Sean DuBois diff --git a/gstreamer-receive/main.go b/gstreamer-receive/main.go index 7cae7bbb..dfe17b14 100644 --- a/gstreamer-receive/main.go +++ b/gstreamer-receive/main.go @@ -22,7 +22,7 @@ import ( // gstreamerReceiveMain is launched in a goroutine because the main thread is needed // for Glib's main loop (Gstreamer uses Glib) func gstreamerReceiveMain() { - // Everything below is the pion-WebRTC API! Thanks for using it ❤️. + // Everything below is the Pion WebRTC API! Thanks for using it ❤️. // Prepare the configuration config := webrtc.Configuration{ diff --git a/gstreamer-send-offer/README.md b/gstreamer-send-offer/README.md index 466865d0..d8f9a904 100644 --- a/gstreamer-send-offer/README.md +++ b/gstreamer-send-offer/README.md @@ -1,5 +1,5 @@ # gstreamer-send-offer -gstreamer-send-offer is a simple application that shows how to send video using pion-WebRTC and GStreamer. This is meant to be used with `gstreamer-receive`, if you want to send via to your browser try `gstreamer-send` +gstreamer-send-offer is a simple application that shows how to send video using Pion WebRTC and GStreamer. This is meant to be used with `gstreamer-receive`, if you want to send via to your browser try `gstreamer-send` ## Instructions ### Install GStreamer @@ -24,7 +24,7 @@ You will see a base64 SDP printed to your console. You now need to communicate t ### enjoy your video! A video should start playing via GStreamer and will continue playing until you close the application. -Congrats, you have used pion-WebRTC! Now start building something cool +Congrats, you have used Pion WebRTC! Now start building something cool ## Customizing your video or audio `gstreamer-send-offer` also accepts the command line arguments `-video-src` and `-audio-src` allowing you to provide custom inputs. diff --git a/gstreamer-send-offer/main.go b/gstreamer-send-offer/main.go index 87eed22d..7b0a7ae6 100644 --- a/gstreamer-send-offer/main.go +++ b/gstreamer-send-offer/main.go @@ -21,7 +21,7 @@ func main() { videoSrc := flag.String("video-src", "videotestsrc", "GStreamer video src") sdpChan := signal.HTTPSDPServer() - // Everything below is the pion-WebRTC API! Thanks for using it ❤️. + // Everything below is the Pion WebRTC API! Thanks for using it ❤️. // Prepare the configuration config := webrtc.Configuration{ diff --git a/gstreamer-send/README.md b/gstreamer-send/README.md index f2dae1b2..f268fe4d 100644 --- a/gstreamer-send/README.md +++ b/gstreamer-send/README.md @@ -34,7 +34,7 @@ Copy the text that `gstreamer-send` just emitted and copy into second text area ### Hit 'Start Session' in jsfiddle, enjoy your video! A video should start playing in your browser above the input boxes, and will continue playing until you close the application. -Congrats, you have used pion-WebRTC! Now start building something cool +Congrats, you have used Pion WebRTC! Now start building something cool ## Customizing your video or audio `gstreamer-send` also accepts the command line arguments `-video-src` and `-audio-src` allowing you to provide custom inputs. diff --git a/gstreamer-send/jsfiddle/demo.details b/gstreamer-send/jsfiddle/demo.details index c70937bd..cd038df2 100644 --- a/gstreamer-send/jsfiddle/demo.details +++ b/gstreamer-send/jsfiddle/demo.details @@ -3,6 +3,6 @@ # SPDX-License-Identifier: MIT name: gstreamer-send -description: Example of using pion-WebRTC to send video to your browser using GStreamer +description: Example of using Pion WebRTC to send video to your browser using GStreamer authors: - Sean DuBois diff --git a/gstreamer-send/main.go b/gstreamer-send/main.go index 9b706b31..6cbaa1c6 100644 --- a/gstreamer-send/main.go +++ b/gstreamer-send/main.go @@ -21,7 +21,7 @@ func main() { videoSrc := flag.String("video-src", "videotestsrc", "GStreamer video src") flag.Parse() - // Everything below is the pion-WebRTC API! Thanks for using it ❤️. + // Everything below is the Pion WebRTC API! Thanks for using it ❤️. // Prepare the configuration config := webrtc.Configuration{ diff --git a/janus-gateway/README.md b/janus-gateway/README.md index 051dd390..0650ddc4 100644 --- a/janus-gateway/README.md +++ b/janus-gateway/README.md @@ -1,5 +1,5 @@ # janus-gateway -janus-gateway is a collection of examples showing how to use pion-WebRTC with [janus-gateway](https://github.com/meetecho/janus-gateway) +janus-gateway is a collection of examples showing how to use Pion WebRTC with [janus-gateway](https://github.com/meetecho/janus-gateway) These examples require that you build+enable websockets with Janus @@ -21,7 +21,7 @@ Got VP8 track, saving to disk as output.ivf You will see output.ivf in the current folder. ## video-room -This example demonstrates how to stream to a Janus video-room using pion-WebRTC +This example demonstrates how to stream to a Janus video-room using Pion WebRTC ### Running run `main.go` in `github.com/pion/webrtc-example-applications/janus-gateway/video-room` diff --git a/janus-gateway/streaming/main.go b/janus-gateway/streaming/main.go index 676321ae..1a776bda 100644 --- a/janus-gateway/streaming/main.go +++ b/janus-gateway/streaming/main.go @@ -57,7 +57,7 @@ func watchHandle(handle *janus.Handle) { } func main() { - // Everything below is the pion-WebRTC API! Thanks for using it ❤️. + // Everything below is the Pion WebRTC API! Thanks for using it ❤️. // Janus gateway, err := janus.Connect("ws://localhost:8188/") diff --git a/janus-gateway/video-room/main.go b/janus-gateway/video-room/main.go index 2bbd354a..16b6f614 100644 --- a/janus-gateway/video-room/main.go +++ b/janus-gateway/video-room/main.go @@ -37,7 +37,7 @@ func watchHandle(handle *janus.Handle) { } func main() { - // Everything below is the pion-WebRTC API! Thanks for using it ❤️. + // Everything below is the Pion WebRTC API! Thanks for using it ❤️. // Prepare the configuration config := webrtc.Configuration{ diff --git a/save-to-webm/README.md b/save-to-webm/README.md index acfcabf2..22a37e55 100644 --- a/save-to-webm/README.md +++ b/save-to-webm/README.md @@ -19,4 +19,4 @@ Copy the text that `save-to-webm` just emitted and copy into second text area ### Hit 'Start Session' in jsfiddle, enjoy your media! Your video and/or audio should be saved to `test.webm`, and will continue playing until you stop the application by Ctrl+C. -Congrats, you have used pion-WebRTC! Now start building something cool +Congrats, you have used Pion WebRTC! Now start building something cool diff --git a/save-to-webm/main.go b/save-to-webm/main.go index 032d5260..d9d9c3f3 100644 --- a/save-to-webm/main.go +++ b/save-to-webm/main.go @@ -153,7 +153,7 @@ func (s *webmSaver) InitWriter(width, height int) { } func createWebRTCConn(saver *webmSaver) *webrtc.PeerConnection { - // Everything below is the pion-WebRTC API! Thanks for using it ❤️. + // Everything below is the Pion WebRTC API! Thanks for using it ❤️. // Prepare the configuration config := webrtc.Configuration{ diff --git a/twitch/main.go b/twitch/main.go index a90efa36..0a3a3539 100644 --- a/twitch/main.go +++ b/twitch/main.go @@ -39,7 +39,7 @@ func main() { } streamKey = os.Args[1] - // Everything below is the pion-WebRTC API! Thanks for using it ❤️. + // Everything below is the Pion WebRTC API! Thanks for using it ❤️. // Prepare the configuration config := webrtc.Configuration{ ICEServers: []webrtc.ICEServer{