https://github.com/membraneframework/membrane_flv_plugin
Muxer and demuxer elements for FLV format
https://github.com/membraneframework/membrane_flv_plugin
Last synced: about 1 year ago
JSON representation
Muxer and demuxer elements for FLV format
- Host: GitHub
- URL: https://github.com/membraneframework/membrane_flv_plugin
- Owner: membraneframework
- License: apache-2.0
- Created: 2021-10-27T12:56:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-08T11:50:33.000Z (about 2 years ago)
- Last Synced: 2025-03-21T22:33:45.374Z (about 1 year ago)
- Language: Elixir
- Homepage:
- Size: 876 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Membrane FLV Plugin
[](https://hex.pm/packages/membrane_flv_plugin)
[](https://hexdocs.pm/membrane_flv_plugin)
[](https://circleci.com/gh/membraneframework/membrane_flv_plugin)
This package contains muxer and demuxer elements for FLV format. Currently, it only supports AAC audio and H264 video.
It is a part of [Membrane Multimedia Framework](https://membraneframework.org).
## Installation
The package can be installed by adding `membrane_flv_plugin` to your list of dependencies in `mix.exs`.
```elixir
def deps do
[
{:membrane_flv_plugin, "~> 0.13.0"}
]
end
```
## Usage
For usage examples, have a look at `examples` directory.
Available examples:
- [`examples/demuxer.exs`](examples/demuxer.exs) - a demonstration of demuxing an FLV file. To run it, simply run `elixir examples/demuxer.exs`. It should generate `audio.aac` and `video.h264` extracted from the container. This example relies on an FLV file from this repository. If you cloned the repository, it should work without any modifications.
- [`examples/muxer.exs`](examples/muxer.exs) - demonstration of muxing AAC and H264 to an FLV file. To run the example, run `elixir examples/muxer.exs`. It should generate `output.flv` file with the contents of both of the source files.
## Copyright and License
Copyright 2022, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_flv_plugin)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_flv_plugin)
Licensed under the [Apache License, Version 2.0](LICENSE)