TokBox releases OpenTok One-to-One Communication Sample App
1–9 of 9 posts
Re: TokBox releases OpenTok One-to-One Communication Sample App
#2Re: TokBox releases OpenTok One-to-One Communication Sample App
#3p.s. Long time fan of the TokBox team and their easy to implement platform.
Re: TokBox releases OpenTok One-to-One Communication Sample App
#4Wow, I remember playing with their service over 3 years ago, when building a chat app for my employer. Does anyone know what has changed since then and this v1.0?
Re: TokBox releases OpenTok One-to-One Communication Sample App
#5Just to be clear, this is an open source _sample app_ that isn't a standalone P2P communication app, meaning that it still requires an OpenTok account - https://tokbox.com/ . Correct? p.s. Long time fan of the TokBox team and their easy to implement platform.
Re: TokBox releases OpenTok One-to-One Communication Sample App
#6Just to be clear, this is an open source _sample app_ that isn't a standalone P2P communication app, meaning that it still requires an OpenTok account - https://tokbox.com/ . Correct? p.s. Long time fan of the TokBox team and their easy to implement platform.
Tokbox is probably hosting the STUN/TURN servers for you. If you want to host them yourself, Twilio offers a cloud service for hosting them, or you can just deploy any open source solution to a server you control.
Re: TokBox releases OpenTok One-to-One Communication Sample App
#7Re: TokBox releases OpenTok One-to-One Communication Sample App
#8Just to be clear, this is an open source _sample app_ that isn't a standalone P2P communication app, meaning that it still requires an OpenTok account - https://tokbox.com/ . Correct? p.s. Long time fan of the TokBox team and their easy to implement platform.
This is likely because WebRTC is not "truly" p2p in all instances. It requires a STUN server for identifying the public IP of each peer, and a TURN server for relaying traffic if the clients are unable to establish a direct connection (10-15% of time, IIRC). Tokbox is probably hosting the STUN/TURN servers for you. If you want to host them yourself, Twilio offers a cloud service for hosting them, or you can just depl…
But there are definitely more parts, TURN/STUN for network traversal is just the beginning. The OpenTok platform behind this sample app adds dynamic optimizations (like audio fallback), archiving (recording) capabilities, RESTful APIs for eventing and control, etc. Just standing up a STUN/TURN server isn't going to solve the hard problems it takes to make something that can eventually go to production.
EDIT: spacing, clarity
Re: TokBox releases OpenTok One-to-One Communication Sample App
#9Wow, I remember playing with their service over 3 years ago, when building a chat app for my employer. Does anyone know what has changed since then and this v1.0?