Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 833 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 833 Bytes

pion-to-pion

pion-to-pion is an example of two pion instances communicating directly!

To see an example of pion-to-pion that uses Trickle ICE see pion-to-pion-trickle. This may connect faster (and will eventually become the default API) but requires more code.

The SDP offer and answer are exchanged automatically over HTTP. The answer side acts like a HTTP server and should therefore be ran first.

Instructions

First run answer:

go install github.com/hcm007/webrtc/examples/pion-to-pion/answer
answer

Next, run offer:

go install github.com/hcm007/webrtc/examples/pion-to-pion/offer
offer

You should see them connect and start to exchange messages.

You can use Docker-compose to start this example:

docker-compose up -d

Now, you can see message exchanging, using docker logs.