File tree 16 files changed +18
-18
lines changed
16 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -36,4 +36,4 @@ Copy the text that `gocv-receive` just emitted and copy into second text area
36
36
### Hit 'Start Session' in jsfiddle, enjoy your media!
37
37
Your video and/or audio should popup automatically, and will continue playing until you close the application.
38
38
39
- Congrats, you have used pion- WebRTC! Now start building something cool
39
+ Congrats, you have used Pion WebRTC! Now start building something cool
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ func createWebRTCConn(ffmpegIn io.Writer) {
133
133
panic (err )
134
134
}
135
135
136
- // Everything below is the pion- WebRTC API! Thanks for using it ❤️.
136
+ // Everything below is the Pion WebRTC API! Thanks for using it ❤️.
137
137
138
138
// Prepare the configuration
139
139
config := webrtc.Configuration {
Original file line number Diff line number Diff line change @@ -34,4 +34,4 @@ Copy the text that `gstreamer-receive` just emitted and copy into second text ar
34
34
### Hit 'Start Session' in jsfiddle, enjoy your media!
35
35
Your video and/or audio should popup automatically, and will continue playing until you close the application.
36
36
37
- Congrats, you have used pion- WebRTC! Now start building something cool
37
+ Congrats, you have used Pion WebRTC! Now start building something cool
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: MIT
4
4
5
5
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
7
7
authors:
8
8
- Sean DuBois
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
// gstreamerReceiveMain is launched in a goroutine because the main thread is needed
23
23
// for Glib's main loop (Gstreamer uses Glib)
24
24
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 ❤️.
26
26
27
27
// Prepare the configuration
28
28
config := webrtc.Configuration {
Original file line number Diff line number Diff line change 1
1
# 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 `
3
3
4
4
## Instructions
5
5
### Install GStreamer
@@ -24,7 +24,7 @@ You will see a base64 SDP printed to your console. You now need to communicate t
24
24
### enjoy your video!
25
25
A video should start playing via GStreamer and will continue playing until you close the application.
26
26
27
- Congrats, you have used pion- WebRTC! Now start building something cool
27
+ Congrats, you have used Pion WebRTC! Now start building something cool
28
28
29
29
## Customizing your video or audio
30
30
` gstreamer-send-offer ` also accepts the command line arguments ` -video-src ` and ` -audio-src ` allowing you to provide custom inputs.
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ func main() {
21
21
videoSrc := flag .String ("video-src" , "videotestsrc" , "GStreamer video src" )
22
22
sdpChan := signal .HTTPSDPServer ()
23
23
24
- // Everything below is the pion- WebRTC API! Thanks for using it ❤️.
24
+ // Everything below is the Pion WebRTC API! Thanks for using it ❤️.
25
25
26
26
// Prepare the configuration
27
27
config := webrtc.Configuration {
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Copy the text that `gstreamer-send` just emitted and copy into second text area
34
34
### Hit 'Start Session' in jsfiddle, enjoy your video!
35
35
A video should start playing in your browser above the input boxes, and will continue playing until you close the application.
36
36
37
- Congrats, you have used pion- WebRTC! Now start building something cool
37
+ Congrats, you have used Pion WebRTC! Now start building something cool
38
38
39
39
## Customizing your video or audio
40
40
` gstreamer-send ` also accepts the command line arguments ` -video-src ` and ` -audio-src ` allowing you to provide custom inputs.
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: MIT
4
4
5
5
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
7
7
authors:
8
8
- Sean DuBois
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ func main() {
21
21
videoSrc := flag .String ("video-src" , "videotestsrc" , "GStreamer video src" )
22
22
flag .Parse ()
23
23
24
- // Everything below is the pion- WebRTC API! Thanks for using it ❤️.
24
+ // Everything below is the Pion WebRTC API! Thanks for using it ❤️.
25
25
26
26
// Prepare the configuration
27
27
config := webrtc.Configuration {
Original file line number Diff line number Diff line change 1
1
# 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 )
3
3
4
4
These examples require that you build+enable websockets with Janus
5
5
@@ -21,7 +21,7 @@ Got VP8 track, saving to disk as output.ivf
21
21
You will see output.ivf in the current folder.
22
22
23
23
## 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
25
25
26
26
### Running
27
27
run ` main.go ` in ` github.com/pion/webrtc-example-applications/janus-gateway/video-room `
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ func watchHandle(handle *janus.Handle) {
57
57
}
58
58
59
59
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 ❤️.
61
61
62
62
// Janus
63
63
gateway , err := janus .Connect ("ws://localhost:8188/" )
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ func watchHandle(handle *janus.Handle) {
37
37
}
38
38
39
39
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 ❤️.
41
41
42
42
// Prepare the configuration
43
43
config := webrtc.Configuration {
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ Copy the text that `save-to-webm` just emitted and copy into second text area
19
19
### Hit 'Start Session' in jsfiddle, enjoy your media!
20
20
Your video and/or audio should be saved to ` test.webm ` , and will continue playing until you stop the application by Ctrl+C.
21
21
22
- Congrats, you have used pion- WebRTC! Now start building something cool
22
+ Congrats, you have used Pion WebRTC! Now start building something cool
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ func (s *webmSaver) InitWriter(width, height int) {
153
153
}
154
154
155
155
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 ❤️.
157
157
158
158
// Prepare the configuration
159
159
config := webrtc.Configuration {
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ func main() {
39
39
}
40
40
streamKey = os .Args [1 ]
41
41
42
- // Everything below is the pion- WebRTC API! Thanks for using it ❤️.
42
+ // Everything below is the Pion WebRTC API! Thanks for using it ❤️.
43
43
// Prepare the configuration
44
44
config := webrtc.Configuration {
45
45
ICEServers : []webrtc.ICEServer {
You can’t perform that action at this time.
0 commit comments