https://github.com/elixir-webrtc/ex_webrtc_recorder
Records and processes RTP packets sent and received using ExWebRTC
https://github.com/elixir-webrtc/ex_webrtc_recorder
Last synced: 3 months ago
JSON representation
Records and processes RTP packets sent and received using ExWebRTC
- Host: GitHub
- URL: https://github.com/elixir-webrtc/ex_webrtc_recorder
- Owner: elixir-webrtc
- License: apache-2.0
- Created: 2025-02-19T12:33:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-23T15:31:39.000Z (7 months ago)
- Last Synced: 2026-02-25T03:14:40.462Z (3 months ago)
- Language: Elixir
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ExWebRTC Recorder
[](https://hex.pm/packages/ex_webrtc_recorder)
[](https://hexdocs.pm/ex_webrtc_recorder)
Records and processes RTP packets sent and received using [ExWebRTC](https://github.com/elixir-webrtc/ex_webrtc).
## Installation
Add `:ex_webrtc_recorder` to your list of dependencies
```elixir
def deps do
[
{:ex_webrtc_recorder, "~> 0.3.0"}
]
end
```
If you want to use Converter to generate WEBM files from the recordings,
you need to have the `ffmpeg` binary with the relevant libraries present in `PATH`.
### S3
ExWebRTC Recorder comes with optional support for uploading the recordings to S3-compatible storage,
but it must be explicitly turned on by adding the following dependencies:
```elixir
def deps do
[
{:ex_webrtc_recorder, "~> 0.3.0"},
{:ex_aws_s3, "~> 2.5"},
{:ex_aws, "~> 2.5"},
{:sweet_xml, "~> 0.7"},
{:hackney, "~> 1.9"} # or any other HTTP client supported by `ex_aws`
]
end
```
See `ExWebRTC.Recorder.S3` for more info.