Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/membraneframework-labs/membrane_dtls_plugin
DTLS and DTLS-SRTP handshake implementation for Membrane ICE plugin
https://github.com/membraneframework-labs/membrane_dtls_plugin
dtls dtls-srtp ice membrane
Last synced: 9 days ago
JSON representation
DTLS and DTLS-SRTP handshake implementation for Membrane ICE plugin
- Host: GitHub
- URL: https://github.com/membraneframework-labs/membrane_dtls_plugin
- Owner: membraneframework-labs
- License: apache-2.0
- Created: 2020-10-15T08:55:45.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-24T11:59:28.000Z (about 2 years ago)
- Last Synced: 2024-11-29T12:18:24.713Z (about 1 month ago)
- Topics: dtls, dtls-srtp, ice, membrane
- Language: Elixir
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane DTLS plugin
[![Hex.pm](https://img.shields.io/hexpm/v/membrane_dtls_plugin.svg)](https://hex.pm/packages/membrane_dtls_plugin)
[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](https://hexdocs.pm/membrane_dtls_plugin/)
[![CircleCI](https://circleci.com/gh/membraneframework/membrane_dtls_plugin.svg?style=svg)](https://circleci.com/gh/membraneframework/membrane_dtls_plugin)DTLS and DTLS-SRTP Handshake implementation for [Membrane Libnice Plugin](https://github.com/membraneframework/membrane_libnice_plugin).
## Installation
The package can be installed by adding `membrane_dtls_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_dtls_plugin, "~> 0.7.0"}
]
end
```## Usage
Use this plugin as `handshake_module` in [Membrane Libnice Plugin](https://github.com/membraneframework/membrane_libnice_plugin.git).```elixir
source: %Membrane.Libnice.Bin{
stun_servers: ["ip:port"],
controlling_mode: false,
handshake_module: Membrane.DTLS.Handshake,
handshake_opts: [client_mode: true, dtls_srtp: true]
}
```## Copyright and License
Copyright 2020, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_dtls_plugin)
[![Software Mansion](https://logo.swmansion.com/logo?color=white&variant=desktop&width=200&tag=membrane-github)](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_dtls_plugin)
Licensed under the [Apache License, Version 2.0](LICENSE)