Go to file
2021-08-17 16:57:25 -07:00
.vscode Add insertSpaces and tabSize rules 2021-07-25 20:53:02 +02:00
public Update matrix-js-sdk with ice fixes 2021-08-11 11:56:57 -07:00
src Move VideoGrid into it's own module 2021-08-17 16:57:25 -07:00
.gitignore Initial commit 2021-07-16 14:22:03 -07:00
index.html Update matrix sdk with safari getUserMedia fix 2021-08-05 10:18:26 -07:00
LICENSE Add LICENSE 2021-07-16 14:31:42 -07:00
package-lock.json Finished grid demo 2021-08-16 16:18:45 -07:00
package.json Finished grid demo 2021-08-16 16:18:45 -07:00
README.md Remove dev server 2021-07-26 15:11:28 -07:00
vite.config.js Add dev server 2021-07-26 14:31:01 -07:00

Matrix Video Chat

Testbed for full mesh video chat.

Getting Started

You must first run a local Synapse server on port 8008

Then install the dependencies:

cd matrix-video-chat
npm install

Locally checkout the robertlong/full-mesh-voip branch of the matrix-js-sdk.

cd matrix-js-sdk
git checkout robertlong/full-mesh-voip
yarn
yarn build
npm link

Link the matrix-js-sdk into the matrix-video-chat project:

cd matrix-video-chat
npm link matrix-js-sdk

Finally run the development server

npm run dev