{"id":17497059,"url":"https://github.com/fishjam-dev/membrane_rtc_engine","last_synced_at":"2025-03-26T21:32:19.103Z","repository":{"id":37479715,"uuid":"381987064","full_name":"fishjam-dev/membrane_rtc_engine","owner":"fishjam-dev","description":"Customizable Real-time Communication Engine/SFU library focused on WebRTC.","archived":true,"fork":false,"pushed_at":"2024-09-19T16:43:22.000Z","size":104039,"stargazers_count":141,"open_issues_count":1,"forks_count":13,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-10-30T08:19:14.687Z","etag":null,"topics":["membrane","multimedia-systems","realtime-communication","sfu","webrtc"],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/fishjam-dev.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}},"created_at":"2021-07-01T09:57:10.000Z","updated_at":"2024-09-19T16:45:48.000Z","dependencies_parsed_at":"2024-01-02T14:04:16.179Z","dependency_job_id":"d3142156-246e-437f-9f85-c536b7cadb3d","html_url":"https://github.com/fishjam-dev/membrane_rtc_engine","commit_stats":{"total_commits":374,"total_committers":23,"mean_commits":16.26086956521739,"dds":0.7994652406417112,"last_synced_commit":"fdd2f149fa32f4c90370dd79b2eacaf00298fda8"},"previous_names":["fishjam-dev/membrane_rtc_engine","jellyfish-dev/membrane_rtc_engine"],"tags_count":73,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-dev%2Fmembrane_rtc_engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-dev%2Fmembrane_rtc_engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-dev%2Fmembrane_rtc_engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fishjam-dev%2Fmembrane_rtc_engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fishjam-dev","download_url":"https://codeload.github.com/fishjam-dev/membrane_rtc_engine/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245738887,"owners_count":20664363,"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":["membrane","multimedia-systems","realtime-communication","sfu","webrtc"],"created_at":"2024-10-19T15:10:13.579Z","updated_at":"2025-03-26T21:32:14.085Z","avatar_url":"https://github.com/fishjam-dev.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# This Repository Has Been Archived\n\nPlease visit the new repository under the [Fishjam Cloud](https://fishjam.io/) organization for the latest updates and contributions:\n\n[![New Repository](https://img.shields.io/badge/Repository-New%20Location-blue)](https://github.com/fishjam-cloud/membrane_rtc_engine)\n\n# 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/jellyfish-dev/membrane_rtc_engine/tree/master/examples/) of this repository,\n- our [membrane\\_videoroom](https://github.com/membraneframework/membrane_videoroom) repository,\n- our [jellyfish](https://github.com/jellyfish-dev/jellyfish) repository.\n\n## Repository structure\n\nThis repository currently holds the following packages:\n\n- [`engine`](https://github.com/jellyfish-dev/membrane_rtc_engine/tree/master/engine) -\n  RTC Engine, the main package responsible for exchanging media tracks between Endpoints,\n- [`webrtc`](https://github.com/jellyfish-dev/membrane_rtc_engine/tree/master/webrtc) -\n  WebRTC Endpoint, responsible for establishing a connection with some WebRTC client (mainly browser) and exchanging media with it,\n- [`hls`](https://github.com/jellyfish-dev/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/jellyfish-dev/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/jellyfish-dev/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/jellyfish-dev/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/jellyfish-dev/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.22.0\"},\n    {:membrane_rtc_engine_webrtc, \"~\u003e 0.8.0\"}\n  ]\nend\n```\n\n[The `integration_test/` directory](https://github.com/jellyfish-dev/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-dev%2Fmembrane_rtc_engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffishjam-dev%2Fmembrane_rtc_engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffishjam-dev%2Fmembrane_rtc_engine/lists"}