{"id":13692296,"url":"https://github.com/devopvoid/webrtc-java","last_synced_at":"2025-04-08T01:34:26.764Z","repository":{"id":38447853,"uuid":"224890850","full_name":"devopvoid/webrtc-java","owner":"devopvoid","description":"WebRTC for desktop platforms running Java","archived":false,"fork":false,"pushed_at":"2025-03-27T14:35:11.000Z","size":927,"stargazers_count":290,"open_issues_count":34,"forks_count":69,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-04-01T00:33:47.358Z","etag":null,"topics":["desktop","java","jni","webrtc"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devopvoid.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2019-11-29T16:41:25.000Z","updated_at":"2025-03-24T21:17:52.000Z","dependencies_parsed_at":"2023-02-10T05:15:58.922Z","dependency_job_id":"a09dcaa7-7999-4dc6-8404-7d6a9617a2ec","html_url":"https://github.com/devopvoid/webrtc-java","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopvoid%2Fwebrtc-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopvoid%2Fwebrtc-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopvoid%2Fwebrtc-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devopvoid%2Fwebrtc-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devopvoid","download_url":"https://codeload.github.com/devopvoid/webrtc-java/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247760846,"owners_count":20991531,"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":["desktop","java","jni","webrtc"],"created_at":"2024-08-02T17:00:55.991Z","updated_at":"2025-04-08T01:34:26.740Z","avatar_url":"https://github.com/devopvoid.png","language":"C++","readme":"[![](https://github.com/devopvoid/webrtc-java/actions/workflows/build.yml/badge.svg)](https://github.com/devopvoid/webrtc-java/actions/workflows/build.yml)\n[![](https://img.shields.io/maven-central/v/dev.onvoid.webrtc/webrtc-java.svg?label=Maven%20Central\u0026logo=apache-maven)](https://search.maven.org/search?q=g:%22dev.onvoid.webrtc%22%20AND%20a:%22webrtc-java%22)\n\n## webrtc-java\n\nJava native interface implementation based on the free, open [WebRTC](https://webrtc.org) project. The goal of this project is to enable development of RTC applications for desktop platforms running Java. This project wraps the [WebRTC Native API](https://webrtc.github.io/webrtc-org/native-code/native-apis) and is similar to the [JS API](https://w3c.github.io/webrtc-pc).\n\n### Maven\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003edev.onvoid.webrtc\u003c/groupId\u003e\n    \u003cartifactId\u003ewebrtc-java\u003c/artifactId\u003e\n    \u003cversion\u003e0.10.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle\n\n```groovy\nimplementation \"dev.onvoid.webrtc:webrtc-java:0.10.0\"\nimplementation group: \"dev.onvoid.webrtc\", name: \"webrtc-java\", version: \"0.10.0\", classifier: \"windows-x86_64\"\nimplementation group: \"dev.onvoid.webrtc\", name: \"webrtc-java\", version: \"0.10.0\", classifier: \"macos-x86_64\"\nimplementation group: \"dev.onvoid.webrtc\", name: \"webrtc-java\", version: \"0.10.0\", classifier: \"macos-aarch64\"\nimplementation group: \"dev.onvoid.webrtc\", name: \"webrtc-java\", version: \"0.10.0\", classifier: \"linux-x86_64\"\nimplementation group: \"dev.onvoid.webrtc\", name: \"webrtc-java\", version: \"0.10.0\", classifier: \"linux-aarch64\"\nimplementation group: \"dev.onvoid.webrtc\", name: \"webrtc-java\", version: \"0.10.0\", classifier: \"linux-aarch32\"\n```\n\n### Supported Platforms\nMaven Central artifacts contain native libraries that can be loaded on the following platforms:\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eLinux\u003c/td\u003e\n    \u003ctd\u003ex86_64, arm64, arm32\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003emacOS\u003c/td\u003e\n    \u003ctd\u003ex86_64, arm64\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eWindows\u003c/td\u003e\n    \u003ctd\u003ex86_64\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\nThe native libraries were build with WebRTC branch M99/4844.\n\n### Build Notes\n\nIn order to build the native code, be sure to install the prerequisite software (follow the links):\n\n**Note**: You don't have to install the Depot Tools, the build script will do that for you.\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eLinux\u003c/td\u003e\n    \u003ctd\u003e\u003ca href=\"https://chromium.googlesource.com/chromium/src/+/master/docs/linux/build_instructions.md#system-requirements\"\u003eUbuntu\u003c/a\u003e, \u003ca href=\"https://chromium.googlesource.com/chromium/src/+/master/docs/linux/build_instructions.md#Notes-for-other-distros\"\u003eother distros\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003emacOS\u003c/td\u003e\n    \u003ctd\u003eXcode 9 or higher\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eWindows\u003c/td\u003e\n    \u003ctd\u003e\u003ca href=\"https://chromium.googlesource.com/chromium/src/+/master/docs/windows_build_instructions.md#visual-studio\"\u003eVisual Studio\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\nAssuming you have all the prerequisites installed for your OS, run:\n\n```\nmvn install\n```\n\nOn the first run, the WebRTC source tree will be loaded into the `/\u003cuser home\u003e/webrtc` directory. This will take a while and require about 18 GB of disk space.\n\n#### Build Parameters\n\n| Parameter          | Description                                            | Default Value               |\n| ------------------ | ------------------------------------------------------ |-----------------------------|\n| webrtc.branch      | The WebRTC branch to checkout.                         | branch-heads/4844           |\n| webrtc.src.dir     | The absolute checkout path for the WebRTC source tree. | /\\\u003cuser_home\\\u003e/webrtc       |\n| webrtc.install.dir | The install path for the compiled WebRTC library. Is also used to link against a pre-compiled WebRTC library to reduce build time. | /\\\u003cuser_home\\\u003e/webrtc/build |\n","funding_links":[],"categories":["Miscellaneous"],"sub_categories":["Tool"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevopvoid%2Fwebrtc-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevopvoid%2Fwebrtc-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevopvoid%2Fwebrtc-java/lists"}