Yoo
unread,Apr 11, 2020, 10:27:33 AM4/11/20Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
I recommend you implement video conferencing yourself using native Django 3.0 websockets OR Django channels. You just have to figure out how to 1. get camera input, 2. convert it into base64, 3. send it over the socket, then 4. in HTML, show the image. My issue with that is 1. you need to send images at a certain rate because the server has to send BACK the image to everyone and 2. figure out the HTML tag.
Videos are just images played at high rate of speed, but I can’t tell if you should use a video or img tag. Good luck!