https://github.com/membraneframework/membrane_aac_plugin
AAC parser and complementary elements for AAC codec
https://github.com/membraneframework/membrane_aac_plugin
Last synced: about 1 year ago
JSON representation
AAC parser and complementary elements for AAC codec
- Host: GitHub
- URL: https://github.com/membraneframework/membrane_aac_plugin
- Owner: membraneframework
- License: apache-2.0
- Created: 2020-05-25T18:35:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-05T19:03:03.000Z (over 1 year ago)
- Last Synced: 2025-03-21T22:33:45.264Z (about 1 year ago)
- Language: Elixir
- Homepage:
- Size: 220 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane AAC plugin
[](https://hex.pm/packages/membrane_aac_plugin)
[](https://hexdocs.pm/membrane_aac_plugin)
[](https://circleci.com/gh/membraneframework/membrane_aac_plugin)
This package provides AAC parser and complimentary elements for AAC.
It is a part of [Membrane Multimedia Framework](https://membraneframework.org).
## Installation
The package can be installed by adding `membrane_aac_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_aac_plugin, "~> 0.19.1"}
]
end
```
## Usage example
You can find examples of usage in the `examples/` directory.
To see how the parser can be used to payload AAC stream so that it can be put in the MP4 container, run:
```
elixir examples/add_and_put_in_mp4.exs
```
When the script terminates, you can play the result .mp4 file with the following command:
```
ffplay output.mp4
```
The documentation can be found at [Hex Docs](https://hexdocs.pm/membrane_aac_plugin).
## Copyright and License
Copyright 2020, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_aac_plugin)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_aac_plugin)
Licensed under the [Apache License, Version 2.0](LICENSE)