+ 1
does anybody know how to make Webcam roulette using python?
I know, it is a browser app, but at least an idea how to implement it?
1 Réponse
+ 1
I would say the general process would be the following:
Implement a backbend server that stores IP addresses of people wanting to be found once they begin searching for random person. Could also include gender, likes, etc.
A front end client that does a random lookup on the IP addresses table. This prob should be web based for usability.
Connect users via IP addresses
Access webcam/microphone of each user to transmit data to each user.
That's how I imagine it would be done, of course there may be a few obstacles in the way, but should be easy to overcome.