{"id":30959226,"url":"https://github.com/fishjam-cloud/membrane_rtc_engine","last_synced_at":"2025-09-11T16:26:08.617Z","repository":{"id":257849108,"uuid":"859315022","full_name":"fishjam-cloud/membrane_rtc_engine","owner":"fishjam-cloud","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-11T09:54:41.000Z","size":77526,"stargazers_count":14,"open_issues_count":2,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-09-11T12:44:32.229Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","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/fishjam-cloud.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-18T13:06:42.000Z","updated_at":"2025-08-21T12:53:10.000Z","dependencies_parsed_at":"2025-09-11T11:27:20.215Z","dependency_job_id":"c71767b1-76fa-4763-999c-ecf136cda049","html_url":"https://github.com/fishjam-cloud/membrane_rtc_engine","commit_stats":null,"previous_names":["fishjam-cloud/membrane_rtc_engine"],"tags_count":89,"template":false,"template_full_name":null,"purl":"pkg:github/fishjam-cloud/membrane_rtc_engine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-cloud%2Fmembrane_rtc_engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-cloud%2Fmembrane_rtc_engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-cloud%2Fmembrane_rtc_engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-cloud%2Fmembrane_rtc_engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fishjam-cloud","download_url":"https://codeload.github.com/fishjam-cloud/membrane_rtc_engine/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-cloud%2Fmembrane_rtc_engine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274668006,"owners_count":25327745,"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","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-09-11T16:26:05.040Z","updated_at":"2025-09-11T16:26:08.605Z","avatar_url":"https://github.com/fishjam-cloud.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Membrane RTC Engine\n\nCustomizable Real-time Communication Engine/SFU library focused on WebRTC.\n\n## Usage\n\nFor usage examples, please refer to:\n\n- [the `examples/` directory](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/examples/) of this repository,\n- our [membrane\\_videoroom](https://github.com/membraneframework/membrane_videoroom) repository,\n- our [fishjam](https://github.com/fishjam-cloud/fishjam) repository.\n\n## Repository structure\n\nThis repository currently holds the following packages:\n\n- [`engine`](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/engine) -\n  RTC Engine, the main package responsible for exchanging media tracks between Endpoints,\n- [`ex_webrtc`](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/ex_webrtc) -\n  ExWebRTC Endpoint, responsible for establishing a connection with some WebRTC client (mainly browser) and exchanging media with it,\n- [`hls`](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/hls) -\n  HLS Endpoint, responsible for receiving media tracks from all other Endpoints and saving them to files by creating HLS playlists,\n- [`rtsp`](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/rtsp) -\n  RTSP Endpoint, responsible for connecting to a remote RTSP stream source and sending the appropriate media track to other Endpoints,\n- [`file`](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/file) -\n  File Endpoint, responsible for reading track from a file, payloading it into RTP, and sending it to other Endpoints,\n- [`sip`](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/sip) -\n  SIP Endpoint, responsible for establishing a connection with some SIP device (e.g. phone) and exchanging media with it,\n- [`recording`](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/recording) -\n  Recording Endpoint, responsible for saving incoming tracks to pointed storages.\n\nFor more info about a given Endpoint, refer to its documentation.\n\nEach Endpoint is a separate package with its own source files, dependencies and tests.\nTo use a certain Endpoint in your app, you have to declare it in your dependencies list (as well as\nthe Engine), e.g.\n```elixir\ndef deps do\n  [\n    {:membrane_rtc_engine, \"~\u003e 0.24.0\"},\n    {:membrane_rtc_engine_ex_webrtc, \"~\u003e 0.1.0\"}\n  ]\nend\n```\n\n[The `integration_test/` directory](https://github.com/fishjam-cloud/membrane_rtc_engine/tree/master/integration_test)\ncontains test scenarios utilising multiple Endpoints of different types.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffishjam-cloud%2Fmembrane_rtc_engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffishjam-cloud%2Fmembrane_rtc_engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffishjam-cloud%2Fmembrane_rtc_engine/lists"}