File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ go get github.com/pion/example-webrtc-applications/gocv-receive
18
18
```
19
19
20
20
### Open gocv-receive example page
21
- [ jsfiddle.net] ( https://jsfiddle.net/b3d72av1 / ) you should see your Webcam, two text-areas and a 'Start Session' button
21
+ [ jsfiddle.net] ( https://jsfiddle.net/Lsfkexmt / ) you should see your Webcam, two text-areas and a 'Start Session' button
22
22
23
23
### Run gocv-receive with your browsers SessionDescription as stdin
24
24
In the jsfiddle the top textarea is your browser, copy that and:
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ var log = msg => {
11
11
document . getElementById ( 'logs' ) . innerHTML += msg + '<br>'
12
12
}
13
13
14
- navigator . mediaDevices . getUserMedia ( { video : true , audio : true } )
14
+ navigator . mediaDevices . getUserMedia ( { video : true , audio : false } )
15
15
. then ( stream => {
16
16
pc . addStream ( document . getElementById ( 'video1' ) . srcObject = stream )
17
17
pc . createOffer ( ) . then ( d => pc . setLocalDescription ( d ) ) . catch ( log )
You can’t perform that action at this time.
0 commit comments