{"id":21244424,"url":"https://github.com/unyt-org/example-video-call","last_synced_at":"2026-05-17T13:35:04.987Z","repository":{"id":226282860,"uuid":"765823351","full_name":"unyt-org/example-video-call","owner":"unyt-org","description":"Example project that shows how to create a basic video call application with UIX","archived":false,"fork":false,"pushed_at":"2024-10-16T18:19:15.000Z","size":83,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-03-07T17:22:29.110Z","etag":null,"topics":["datex","uix","uix-example","unyt","unyt-org","video-streaming","webrtc"],"latest_commit_sha":null,"homepage":"https://video.example.unyt.org","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unyt-org.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["unyt-org"],"patreon":"unyt","custom":["https://unyt.org/donate"]}},"created_at":"2024-03-01T17:29:40.000Z","updated_at":"2024-10-16T18:19:19.000Z","dependencies_parsed_at":"2024-10-18T12:44:41.442Z","dependency_job_id":null,"html_url":"https://github.com/unyt-org/example-video-call","commit_stats":null,"previous_names":["unyt-org/example-video-call"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unyt-org%2Fexample-video-call","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unyt-org%2Fexample-video-call/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unyt-org%2Fexample-video-call/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unyt-org%2Fexample-video-call/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unyt-org","download_url":"https://codeload.github.com/unyt-org/example-video-call/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243683804,"owners_count":20330728,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["datex","uix","uix-example","unyt","unyt-org","video-streaming","webrtc"],"created_at":"2024-11-21T01:25:11.378Z","updated_at":"2026-05-17T13:35:04.982Z","avatar_url":"https://github.com/unyt-org.png","language":"CSS","funding_links":["https://github.com/sponsors/unyt-org","https://patreon.com/unyt","https://unyt.org/donate"],"categories":[],"sub_categories":[],"readme":"# UIX Video Call Example Project\n\nThis is a example project demonstrating how to create a basic video call\napplication with UIX. Encrypted end-to-end video calls are established via DATEX\nand transmitted over a WebRTC connection.\n\n## Project structure\n\nThis project consists of a single TypeScript module\n([`frontend/entrypoint.tsx`](frontend/entrypoint.tsx)) containing the UI and\nvideo call logic. Additionally, CSS styles are defined in\n[`frontend/entrypoint.css`](frontend/entrypoint.css).\n\n## Streaming video and audio\n\nEstablishing a video call happens in four steps:\n\nFirst, a video stream for the current device is requested using the navigator\nmedia API:\n\n```ts\nconst ownMediaStream = await navigator.mediaDevices.getUserMedia({\n  video: true,\n  audio: true,\n}).catch(console.error);\n```\n\nWhen the \"Call\" button is clicked, this media stream is sent to another endpoint\nby calling `CallManager.call` on the remote endpoint:\n\n```ts\nawait CallManager.call.to(remoteEndpoint.val)(ownMediaStream);\n```\n\nOn the remote endpoint, inside the `CallManager.call` function, the passed media\nstream is displayed in the remote video view:\n\n```ts\nremoteVideo.srcObject = mediaStream;\n```\n\nThe remote endpoint also returns its own media stream from the\n`CallManager.call` function, which is then again displayed in the local\nendpoint's remote video view:\n\n```ts\nremoteVideo.srcObject = await CallManager.call.to(remoteEndpoint.val)(\n  ownMediaStream,\n);\n```\n\n---\n\n\u003csub\u003e\u0026copy; unyt 2025 • [unyt.org](https://unyt.org)\u003c/sub\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funyt-org%2Fexample-video-call","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funyt-org%2Fexample-video-call","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funyt-org%2Fexample-video-call/lists"}