Skip to content

Commit e1242e8

Browse files
committed
Update docs pion-WebRTC -> Pion WebRTC
1 parent eeca276 commit e1242e8

File tree

16 files changed

+18
-18
lines changed

16 files changed

+18
-18
lines changed

gocv-receive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ Copy the text that `gocv-receive` just emitted and copy into second text area
3636
### Hit 'Start Session' in jsfiddle, enjoy your media!
3737
Your video and/or audio should popup automatically, and will continue playing until you close the application.
3838

39-
Congrats, you have used pion-WebRTC! Now start building something cool
39+
Congrats, you have used Pion WebRTC! Now start building something cool

gocv-receive/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ func createWebRTCConn(ffmpegIn io.Writer) {
133133
panic(err)
134134
}
135135

136-
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
136+
// Everything below is the Pion WebRTC API! Thanks for using it ❤️.
137137

138138
// Prepare the configuration
139139
config := webrtc.Configuration{

gstreamer-receive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ Copy the text that `gstreamer-receive` just emitted and copy into second text ar
3434
### Hit 'Start Session' in jsfiddle, enjoy your media!
3535
Your video and/or audio should popup automatically, and will continue playing until you close the application.
3636

37-
Congrats, you have used pion-WebRTC! Now start building something cool
37+
Congrats, you have used Pion WebRTC! Now start building something cool

gstreamer-receive/jsfiddle/demo.details

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# SPDX-License-Identifier: MIT
44

55
name: gstreamer-receive
6-
description: Example of using pion-WebRTC to play video using GStreamer
6+
description: Example of using Pion WebRTC to play video using GStreamer
77
authors:
88
- Sean DuBois

gstreamer-receive/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
// gstreamerReceiveMain is launched in a goroutine because the main thread is needed
2323
// for Glib's main loop (Gstreamer uses Glib)
2424
func gstreamerReceiveMain() {
25-
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
25+
// Everything below is the Pion WebRTC API! Thanks for using it ❤️.
2626

2727
// Prepare the configuration
2828
config := webrtc.Configuration{

gstreamer-send-offer/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# gstreamer-send-offer
2-
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`
2+
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`
33

44
## Instructions
55
### Install GStreamer
@@ -24,7 +24,7 @@ You will see a base64 SDP printed to your console. You now need to communicate t
2424
### enjoy your video!
2525
A video should start playing via GStreamer and will continue playing until you close the application.
2626

27-
Congrats, you have used pion-WebRTC! Now start building something cool
27+
Congrats, you have used Pion WebRTC! Now start building something cool
2828

2929
## Customizing your video or audio
3030
`gstreamer-send-offer` also accepts the command line arguments `-video-src` and `-audio-src` allowing you to provide custom inputs.

gstreamer-send-offer/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func main() {
2121
videoSrc := flag.String("video-src", "videotestsrc", "GStreamer video src")
2222
sdpChan := signal.HTTPSDPServer()
2323

24-
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
24+
// Everything below is the Pion WebRTC API! Thanks for using it ❤️.
2525

2626
// Prepare the configuration
2727
config := webrtc.Configuration{

gstreamer-send/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Copy the text that `gstreamer-send` just emitted and copy into second text area
3434
### Hit 'Start Session' in jsfiddle, enjoy your video!
3535
A video should start playing in your browser above the input boxes, and will continue playing until you close the application.
3636

37-
Congrats, you have used pion-WebRTC! Now start building something cool
37+
Congrats, you have used Pion WebRTC! Now start building something cool
3838

3939
## Customizing your video or audio
4040
`gstreamer-send` also accepts the command line arguments `-video-src` and `-audio-src` allowing you to provide custom inputs.

gstreamer-send/jsfiddle/demo.details

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# SPDX-License-Identifier: MIT
44

55
name: gstreamer-send
6-
description: Example of using pion-WebRTC to send video to your browser using GStreamer
6+
description: Example of using Pion WebRTC to send video to your browser using GStreamer
77
authors:
88
- Sean DuBois

gstreamer-send/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func main() {
2121
videoSrc := flag.String("video-src", "videotestsrc", "GStreamer video src")
2222
flag.Parse()
2323

24-
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
24+
// Everything below is the Pion WebRTC API! Thanks for using it ❤️.
2525

2626
// Prepare the configuration
2727
config := webrtc.Configuration{

janus-gateway/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# janus-gateway
2-
janus-gateway is a collection of examples showing how to use pion-WebRTC with [janus-gateway](https://github.com/meetecho/janus-gateway)
2+
janus-gateway is a collection of examples showing how to use Pion WebRTC with [janus-gateway](https://github.com/meetecho/janus-gateway)
33

44
These examples require that you build+enable websockets with Janus
55

@@ -21,7 +21,7 @@ Got VP8 track, saving to disk as output.ivf
2121
You will see output.ivf in the current folder.
2222

2323
## video-room
24-
This example demonstrates how to stream to a Janus video-room using pion-WebRTC
24+
This example demonstrates how to stream to a Janus video-room using Pion WebRTC
2525

2626
### Running
2727
run `main.go` in `github.com/pion/webrtc-example-applications/janus-gateway/video-room`

janus-gateway/streaming/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func watchHandle(handle *janus.Handle) {
5757
}
5858

5959
func main() {
60-
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
60+
// Everything below is the Pion WebRTC API! Thanks for using it ❤️.
6161

6262
// Janus
6363
gateway, err := janus.Connect("ws://localhost:8188/")

janus-gateway/video-room/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func watchHandle(handle *janus.Handle) {
3737
}
3838

3939
func main() {
40-
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
40+
// Everything below is the Pion WebRTC API! Thanks for using it ❤️.
4141

4242
// Prepare the configuration
4343
config := webrtc.Configuration{

save-to-webm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Copy the text that `save-to-webm` just emitted and copy into second text area
1919
### Hit 'Start Session' in jsfiddle, enjoy your media!
2020
Your video and/or audio should be saved to `test.webm`, and will continue playing until you stop the application by Ctrl+C.
2121

22-
Congrats, you have used pion-WebRTC! Now start building something cool
22+
Congrats, you have used Pion WebRTC! Now start building something cool

save-to-webm/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ func (s *webmSaver) InitWriter(width, height int) {
153153
}
154154

155155
func createWebRTCConn(saver *webmSaver) *webrtc.PeerConnection {
156-
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
156+
// Everything below is the Pion WebRTC API! Thanks for using it ❤️.
157157

158158
// Prepare the configuration
159159
config := webrtc.Configuration{

twitch/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func main() {
3939
}
4040
streamKey = os.Args[1]
4141

42-
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
42+
// Everything below is the Pion WebRTC API! Thanks for using it ❤️.
4343
// Prepare the configuration
4444
config := webrtc.Configuration{
4545
ICEServers: []webrtc.ICEServer{

0 commit comments

Comments
 (0)