Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 954 Bytes

README.md

File metadata and controls

41 lines (25 loc) · 954 Bytes

jina-video-chat

Jina-powered multi-user video chat in 20 lines of code, showcasing how to use Jina for building a real-time streaming solution.

da55389b1126b937e0c1d451ac54bac9 (1)

Or you can call it Joom! 😂

Prerequisites

First, you need a webcam.

Run server

Server doesn't need a webcam of course.

pip install -U jina
git clone https://github.com/hanxiao/video-chat.git
cd video-chat
jina flow --uses flow.yml

Note down the server address:

Run client

pip install opencv-python
pip install -U jina docarray
git clone https://github.com/hanxiao/video-chat.git
cd video-chat
python client.py grpcs://your-server-address-from-last-image johannes

where johannes is the name of the user, must be different from other users.