https://github.com/membraneframework/membrane_transcoder_plugin
Membrane plugin providing audio and video transcoding capabilities
https://github.com/membraneframework/membrane_transcoder_plugin
Last synced: 10 months ago
JSON representation
Membrane plugin providing audio and video transcoding capabilities
- Host: GitHub
- URL: https://github.com/membraneframework/membrane_transcoder_plugin
- Owner: membraneframework
- License: apache-2.0
- Created: 2024-11-13T14:07:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-07-10T08:59:29.000Z (11 months ago)
- Last Synced: 2025-07-10T17:16:21.012Z (11 months ago)
- Language: Elixir
- Homepage:
- Size: 1.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane Transcoder Plugin
[](https://hex.pm/packages/membrane_transcoder_plugin)
[](https://hexdocs.pm/membrane_transcoder_plugin)
[](https://circleci.com/gh/membraneframework/membrane_transcoder_plugin)
This repository provides `Membrane.Transcoder` which is a bin that is capable
of transcoding the input audio or video stream into the descired one specified
with simple declarative API.
It's a part of the [Membrane Framework](https://membrane.stream).
## Installation
The package can be installed by adding `membrane_transcoder_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_transcoder_plugin, "~> 0.3.2"}
]
end
```
## Usage
In the `examples/vp8_to_h264.exs` file there is an example showing how to use
the `Membrane.Transcoder` to convert video encoded with VP8 into H264 encoded video.
You can run it with the following command:
```
elixir vp8_to_h264.exs
```
Then you can inspect the format of the output file with e.g. `ffprobe` and confirm that it stores video encoded with H.264:
```
ffprobe tmp/video.ivf
```
## Copyright and License
Copyright 2020, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_transcoder_plugin)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_transcoder_plugin)
Licensed under the [Apache License, Version 2.0](LICENSE)