{"id":13691710,"url":"https://github.com/medooze/media-server-node","last_synced_at":"2025-05-14T07:08:30.132Z","repository":{"id":39449614,"uuid":"82198999","full_name":"medooze/media-server-node","owner":"medooze","description":"WebRTC Media Server for Node.js","archived":false,"fork":false,"pushed_at":"2024-11-13T04:22:40.000Z","size":11107,"stargazers_count":804,"open_issues_count":19,"forks_count":119,"subscribers_count":57,"default_branch":"master","last_synced_at":"2024-11-17T21:39:09.318Z","etag":null,"topics":["mediaserver","nodejs","webrtc"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/medooze.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2017-02-16T16:05:42.000Z","updated_at":"2024-11-13T00:46:20.000Z","dependencies_parsed_at":"2023-10-14T16:32:56.119Z","dependency_job_id":"36125d04-c573-4213-acc2-bc698c686399","html_url":"https://github.com/medooze/media-server-node","commit_stats":{"total_commits":1129,"total_committers":21,"mean_commits":53.76190476190476,"dds":"0.26040744021257756","last_synced_commit":"301e972dc8520a0499a47448ba83fb9ffca9c6dc"},"previous_names":[],"tags_count":563,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/medooze%2Fmedia-server-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/medooze%2Fmedia-server-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/medooze%2Fmedia-server-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/medooze%2Fmedia-server-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/medooze","download_url":"https://codeload.github.com/medooze/media-server-node/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226821000,"owners_count":17687359,"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":["mediaserver","nodejs","webrtc"],"created_at":"2024-08-02T17:00:49.380Z","updated_at":"2024-11-27T21:03:40.647Z","avatar_url":"https://github.com/medooze.png","language":"JavaScript","funding_links":[],"categories":["Libraries"],"sub_categories":["Node"],"readme":"[![media-server-node-test](https://github.com/medooze/media-server-node/actions/workflows/release.yaml/badge.svg)](https://github.com/medooze/media-server-node/actions/workflows/release.yaml)\n\n# WebRTC Medooze Media Server for Node.js\n\nThis media server will allow you to receive and send media streams from remote WebRTC peers and manage how you want to route them. \n\nSupported systems:\n\n - [x] Linux\n - [x] Mac Os X\n - [x] Raspberry Pi\n\n## Install\n \nJust add the Medooze media server as a dependency to your node project:\n```\n    npm i --save medooze-media-server\n```\n## Distribution\n\nIf you don't want to compile the native code each time you use the media server, you could precompile Medooze Media server and generate a binary package for your platform. On the Medooze media server directory just do:\n\n```\n   git submodule update --init --recursive\n   npm i\n   npm run-script dist\n```\n\nIt will generate the binary package in `dist/medooze-media-server-x.y.x.tgz`.\n\nTo use it on your project just install it instead of the npm repository dependency:\n\n```\n    npm i --save medooze-media-server-x.y.x.tgz\n```\n\n## Usage\n```javascript\nconst MediaServer = require('medooze-media-server');\n```\n## API Documention\nYou can check the full object documentation in [markdown](api.md) or [html](https://medooze.github.io/media-server-node/).\n\n## Support\nTo discuss issues related to this project or ask for help please [join the google community group](https://groups.google.com/forum/#!forum/medooze).\n\n## Demo application\nYou can check a demo application [here](https://github.com/medooze/media-server-demo-node)\n\n## Functionality\nWe intend to implement support the following features:\n\n- [x] MP4 multitrack recording support for all WebRTC codecs: H264,VP8,VP9, OPUS and PCMU/A.\n- [x] [VP9 SVC](https://tools.ietf.org/html/draft-ietf-payload-vp9-02) layer selection\n- [x] Simulcast with temporal layer selection\n- [x] [RTP transport wide congestion control](https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions-01)\n- [x] Sender side BitRate estimation\n- [ ] [Flex FEC draft 3](https://tools.ietf.org/html/draft-ietf-payload-flexible-fec-scheme-03)\n- [x] NACK and RTX support\n- [x] [RTCP reduced size] (https://tools.ietf.org/html/rfc5506)\n- [x] Bundle\n- [x] ICE lite\n- [x] [Frame Marking] (https://tools.ietf.org/html/draft-ietf-avtext-framemarking-04)\n- [x] [PERC double encryption] (https://tools.ietf.org/html/draft-ietf-perc-double-03)\n- [x] Plain RTP broadcasting/streaming\n- [ ] Datachannels\n\n## Media Server Client\n\nYou can use the [Media Server Client lib](https://github.com/medooze/media-server-client-js) for easy sync between any browser and the media server. If you do not want to depend on an external library or specifc signaling you can setup everything [manually](manual.md).\n\n## Tracing\n\nMedooze is instrumented with [Perfetto](https://perfetto.dev) track events.\nFor information about capturing and interpreting traces, see [Tracing](tracing.md).\n\n## Author\n\nSergio Garcia Murillo @ Medooze \n\n## Contributing\nTo get started, [Sign the Contributor License Agreement](https://www.clahub.com/agreements/medooze/media-server-node).\n\n## License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmedooze%2Fmedia-server-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmedooze%2Fmedia-server-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmedooze%2Fmedia-server-node/lists"}