https://github.com/fishjam-dev/membrane_ice_plugin
Membrane plugin for ICE protocol
https://github.com/fishjam-dev/membrane_ice_plugin
Last synced: 6 months ago
JSON representation
Membrane plugin for ICE protocol
- Host: GitHub
- URL: https://github.com/fishjam-dev/membrane_ice_plugin
- Owner: fishjam-dev
- License: apache-2.0
- Created: 2021-12-30T14:40:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-19T10:15:14.000Z (almost 2 years ago)
- Last Synced: 2025-04-04T07:16:57.538Z (about 1 year ago)
- Language: Elixir
- Homepage:
- Size: 315 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Membrane ICE plugin
[](https://hex.pm/packages/membrane_ice_plugin)
[](https://hexdocs.pm/membrane_libnice_plugin/)
[](https://circleci.com/gh/jellyfish-dev/membrane_ice_plugin)
Membrane plugin for ICE protocol.
It enables establishing connection, sending and receiving messages using ICE protocol.
This package uses [fake_turn] and is part of [Membrane Multimedia Framework](https://membrane.stream).
## Installation
The package can be installed by adding `membrane_ice_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_ice_plugin, "~> 0.18.0"}
]
end
```
### Additional dependencies
#### MacOS Intel
```
brew install openssl
export PKG_CONFIG_PATH="/usr/local/opt/openssl@1.1/lib/pkgconfig"
```
To run tests:
```
export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib"
export CFLAGS="-I/usr/local/opt/openssl@1.1/include/"
export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include/"
```
## Usage
See `Membrane.WebRTC.EndpointBin` in [membrane_webrtc_plugin](https://hex.pm/packages/membrane_webrtc_plugin) for usage example
## Copyright and License
Copyright 2020, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_ice)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_ice)
Licensed under the [Apache License, Version 2.0](LICENSE)