Skip to content

Commit 50301ea

Browse files
committed
Update docs to use go install
`go get` is not a supported method to install binaries anymore
1 parent 5aa5fac commit 50301ea

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

examples/bandwidth-estimation-from-disk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ffmpeg -i $INPUT_FILE -g 30 -b:v 2.5M -s 1280x720 high.ivf
1515
### Download bandwidth-estimation-from-disk
1616

1717
```
18-
go get github.com/pion/webrtc/v4/examples/bandwidth-estimation-from-disk
18+
go install github.com/pion/webrtc/v4/examples/bandwidth-estimation-from-disk@latest
1919
```
2020

2121
### Open bandwidth-estimation-from-disk example page

examples/broadcast/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This could serve as the building block to building conferencing software, and ot
66
## Instructions
77
### Download broadcast
88
```
9-
go get github.com/pion/webrtc/v4/examples/broadcast
9+
go install github.com/pion/webrtc/v4/examples/broadcast@latest
1010
```
1111

1212
### Open broadcast example page

examples/custom-logger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ users to override this and process messages however they want.
66
## Instructions
77
### Download custom-logger
88
```
9-
go get github.com/pion/webrtc/v4/examples/custom-logger
9+
go install github.com/pion/webrtc/v4/examples/custom-logger@latest
1010
```
1111

1212
### Run custom-logger

examples/data-channels-detach/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The example mirrors the data-channels example.
55

66
## Install
77
```
8-
go get github.com/pion/webrtc/v4/examples/data-channels-detach
8+
go install github.com/pion/webrtc/v4/examples/data-channels-detach@latest
99
```
1010

1111
## Usage

examples/data-channels/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ data-channels is a Pion WebRTC application that shows how you can send/recv Data
44
## Instructions
55
### Download data-channels
66
```
7-
go get github.com/pion/webrtc/v4/examples/data-channels
7+
go install github.com/pion/webrtc/v4/examples/data-channels@latest
88
```
99

1010
### Open data-channels example page

examples/insertable-streams/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ffmpeg -i $INPUT_FILE -g 30 output.ivf
1414

1515
### Download insertable-streams
1616
```
17-
go get github.com/pion/webrtc/v4/examples/insertable-streams
17+
go install github.com/pion/webrtc/v4/examples/insertable-streams@latest
1818
```
1919

2020
### Open insertable-streams example page

examples/ortc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ In this example we have defined a simple JSON based signaling protocol.
99
## Instructions
1010
### Download ortc
1111
```
12-
go get github.com/pion/webrtc/v4/examples/ortc
12+
go install github.com/pion/webrtc/v4/examples/ortc@latest
1313
```
1414

1515
### Run first client as offerer

examples/play-from-disk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ffmpeg -i $INPUT_FILE -c:a libopus -page_duration 20000 -vn output.ogg
1515
### Download play-from-disk
1616

1717
```
18-
go get github.com/pion/webrtc/v4/examples/play-from-disk
18+
go install github.com/pion/webrtc/v4/examples/play-from-disk@latest
1919
```
2020

2121
### Open play-from-disk example page

examples/reflect/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ reflect demonstrates how with one PeerConnection you can send video to Pion and
44
## Instructions
55
### Download reflect
66
```
7-
go get github.com/pion/webrtc/v4/examples/reflect
7+
go install github.com/pion/webrtc/v4/examples/reflect@latest
88
```
99

1010
### Open reflect example page

examples/rtcp-processing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ also craft messages to influence the media quality.
1111
## Instructions
1212
### Download rtcp-processing
1313
```
14-
go get github.com/pion/webrtc/v4/examples/rtcp-processing
14+
go install github.com/pion/webrtc/v4/examples/rtcp-processing@latest
1515
```
1616

1717
### Open rtcp-processing example page

0 commit comments

Comments
 (0)