Video calling - what to use in combination with nextjs?
Answered
B33fb0n3 posted this in #help-forum
B33fb0n3OP
Hey, I would like to add secure video calling into one of my apps. I would like to build the API around it and only allowed user should be able to access those video calls.
I saw agora or cloudflare realtimekit and those things, but I am not sure if thats works best and also it costs a bit. I have my own vps running and I am pretty sure it can run videocalls. Hosting is at the end on vercel - the videocall stuff can be hosted somewhere else.
What to use to have a good integration with nextjs?
I saw agora or cloudflare realtimekit and those things, but I am not sure if thats works best and also it costs a bit. I have my own vps running and I am pretty sure it can run videocalls. Hosting is at the end on vercel - the videocall stuff can be hosted somewhere else.
What to use to have a good integration with nextjs?
4 Replies
https://peerjs.com/ is the best one i know
Answer
@Yi Lon Ma https://peerjs.com/ is the best one i know
B33fb0n3OP
Oh that looks good. Then both users create a peer and they connect to each other? How to secure the connection, so only specific people can connect to the stream?
@B33fb0n3 Oh that looks good. Then both users create a peer and they connect to each other? How to secure the connection, so only specific people can connect to the stream?
you have to host your own peer server. there you can authenticate and Authorize users
B33fb0n3OP
thats what I am looking for. Thanks!