https://github.com/membraneframework/membrane_g711_ffmpeg_plugin
Membrane G.711 decoder and encoder based on FFmpeg
https://github.com/membraneframework/membrane_g711_ffmpeg_plugin
Last synced: 6 months ago
JSON representation
Membrane G.711 decoder and encoder based on FFmpeg
- Host: GitHub
- URL: https://github.com/membraneframework/membrane_g711_ffmpeg_plugin
- Owner: membraneframework
- License: apache-2.0
- Created: 2023-10-31T10:59:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-30T08:26:24.000Z (about 1 year ago)
- Last Synced: 2025-04-30T20:05:48.975Z (about 1 year ago)
- Language: Elixir
- Homepage:
- Size: 35.2 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane G.711 FFmpeg plugin
[](https://hex.pm/packages/membrane_g711_ffmpeg_plugin)
[](https://hexdocs.pm/membrane_g711_ffmpeg_plugin)
[](https://circleci.com/gh/jellyfish-dev/membrane_g711_ffmpeg_plugin)
This package provides G.711 audio decoder, encoder and parser. The decoder and encoder are based on [ffmpeg](https://www.ffmpeg.org).
Both G.711 A-law (PCMA) and μ-law (PCMU) formats are supported.
It is part of [Membrane Multimedia Framework](https://membrane.stream).
## Installation
The package can be installed by adding `membrane_g711_ffmpeg_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_g711_ffmpeg_plugin, "~> 0.1.4"}
]
end
```
This package depends on the [ffmpeg](https://www.ffmpeg.org) libraries. The precompiled builds will be pulled and linked automatically. However, should there be any problems, consider installing it manually.
### Manual installation of dependencies
Refer to [ffmpeg page](https://www.ffmpeg.org) for detailed installation instructions.
## Usage
For usage examples, refer to [the scripts in `examples/` directory](https://github.com/jellyfish-dev/membrane_g711_ffmpeg_plugin/tree/main/examples/).
## Copyright and License
Copyright 2023, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_template_plugin)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_template_plugin)
Licensed under the [Apache License, Version 2.0](LICENSE)