Skip to content

Commit

Permalink
Update instructions to use go install
Browse files Browse the repository at this point in the history
Using `go get` to install binaries no longer works.
  • Loading branch information
alfonsocv12 authored and Sean-Der committed Apr 29, 2024
1 parent c67c488 commit 0750e13
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gstreamer-receive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This example requires you have GStreamer installed, these are the supported plat
### Download gstreamer-receive
```
export GO111MODULE=on
go get github.com/pion/example-webrtc-applications/v3/gstreamer-receive
go install github.com/pion/example-webrtc-applications/v3/gstreamer-receive@latest
```

### Open gstreamer-receive example page
Expand Down
2 changes: 1 addition & 1 deletion gstreamer-send/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This example requires you have GStreamer installed, these are the supported plat
### Download gstreamer-send
```
export GO111MODULE=on
go get github.com/pion/example-webrtc-applications/v3/gstreamer-send
go install github.com/pion/example-webrtc-applications/v3/gstreamer-send@latest
```

### Open gstreamer-send example page
Expand Down
2 changes: 1 addition & 1 deletion play-from-disk-h264/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ffmpeg -i $INPUT_FILE -c:a libopus -page_duration 20000 -vn output.ogg
### Download play-from-disk-h264
```
export GO111MODULE=on
go get github.com/pion/example-webrtc-applications/v3/play-from-disk-h264
go install github.com/pion/example-webrtc-applications/v3/play-from-disk-h264@latest
```

### Open play-from-disk-h264 example page
Expand Down
2 changes: 1 addition & 1 deletion rtmp-to-webrtc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ of VP8 with H264 in `main.go`
### Download rtmp-to-webrtc
```
export GO111MODULE=on
go get github.com/pion/example-webrtc-applications/v3/rtmp-to-webrtc
go install github.com/pion/example-webrtc-applications/v3/rtmp-to-webrtc@latest
```

### Open jsfiddle example page
Expand Down
2 changes: 1 addition & 1 deletion twitch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This example requires you have ffmpeg installed, these are the supported platfor
### Download twitch
```
export GO111MODULE=on
go get github.com/pion/example-webrtc-applications/v3/twitch
go install github.com/pion/example-webrtc-applications/v3/twitch@latest
```

### Open twitch example page
Expand Down
2 changes: 1 addition & 1 deletion unreal-pixel-streaming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This example doesn't do anything with the media [rtp-forwarder](https://github.c
### Download unreal-pixel-streaming
```
export GO111MODULE=on
go get github.com/pion/example-webrtc-applications/v3/unreal-pixel-streaming
go install github.com/pion/example-webrtc-applications/v3/unreal-pixel-streaming@latest
```

### Run unreal-pixel-streaming and pass the url and origin
Expand Down

0 comments on commit 0750e13

Please sign in to comment.