https://github.com/membraneframework/membrane_rtp_plugin
Membrane bins and elements for sending and receiving RTP/SRTP and RTCP/SRTCP streams
https://github.com/membraneframework/membrane_rtp_plugin
Last synced: 10 months ago
JSON representation
Membrane bins and elements for sending and receiving RTP/SRTP and RTCP/SRTCP streams
- Host: GitHub
- URL: https://github.com/membraneframework/membrane_rtp_plugin
- Owner: membraneframework
- License: apache-2.0
- Created: 2020-03-20T17:43:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-26T13:34:24.000Z (about 1 year ago)
- Last Synced: 2025-03-30T14:11:23.610Z (about 1 year ago)
- Language: Elixir
- Homepage:
- Size: 12.2 MB
- Stars: 22
- Watchers: 3
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane RTP plugin
[](https://hex.pm/packages/membrane_rtp_plugin)
[](https://hexdocs.pm/membrane_rtp_plugin/)
[](https://circleci.com/gh/membraneframework/membrane_rtp_plugin)
This package provides bins and elements for sending and receiving RTP/SRTP and RTCP/SRTCP streams.
It is a part of [Membrane Multimedia Framework](https://membraneframework.org).
## Installation
The package can be installed by adding `membrane_rtp_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_rtp_plugin, "~> 0.31.0"},
{:ex_libsrtp, ">= 0.0.0"} # required only if SRTP/SRTCP support is needed
]
end
```
If SRTP/SRTCP support is needed, one has to install `libsrtp` to their system.
### MacOS
Run `brew install srtp`
### Ubuntu
Run `apt install libsrtp2-dev`
### Other
For more details and manual installation, see [ExLibSRTP HexDocs](https://hexdocs.pm/ex_libsrtp/readme.html).
## Usage
For usage examples, check the [RTP demo](https://github.com/membraneframework/membrane_demo/tree/master/rtp).
The docs can be found at [HexDocs](https://hexdocs.pm/membrane_rtp_plugin).
## Copyright and License
Copyright 2020, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_rtp_plugin)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_rtp_plugin)
Licensed under the [Apache License, Version 2.0](LICENSE)