-
Hi, i'm new here, Pion is a great work.
am i right ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @iPush Thank you so much for your kind words! Hope you are enjoying using Pion :) Your explanation sounds right to me! The
If you are building something with |
Beta Was this translation helpful? Give feedback.
Hi @iPush
Thank you so much for your kind words! Hope you are enjoying using Pion :) Your explanation sounds right to me!
The
ICE
objects inpion/webrtc
come from the webrtc-pc spec. This defines things like ICECandidate. We can't put these objects inpion/ice
because they are WebRTC specific.pion/ice
is also used by people that don't use WebRTC you can see the importers here. I try and make sure that people that don't care about WebRTC aren't forced to import it.If you are building something with
pion/webrtc
I would try to avoid usingpion/ice
(if possible). It is a lower level interface and the API may change at a different time thenpion/webrtc
. If you are building something with IC…