https://github.com/fishjam-dev/membrane_aws_plugin
https://github.com/fishjam-dev/membrane_aws_plugin
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fishjam-dev/membrane_aws_plugin
- Owner: fishjam-dev
- License: apache-2.0
- Created: 2024-02-27T13:50:05.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-18T15:24:28.000Z (over 1 year ago)
- Last Synced: 2025-02-16T17:38:55.752Z (11 months ago)
- Language: Elixir
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane AWS Plugin
[](https://hex.pm/packages/membrane_aws_plugin)
[](https://hexdocs.pm/membrane_aws_plugin)
[](https://circleci.com/gh/jellyfish-dev/membrane_aws_plugin)
[](https://codecov.io/gh/jellyfish-dev/membrane_aws_plugin)
This repository contains Membrane element that interacts with AWS.
Currently implemented are:
- `Membrane.AWS.S3.Source`
It's a part of the [Membrane Framework](https://membrane.stream).
## Installation
The package can be installed by adding `membrane_aws_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_aws_plugin, "~> 0.1.0"}
]
end
```
## Usage example
The `example/` folder contains an example usage of `Membrane.AWS.S3.Source`.
This demo downloads a file from S3 and saves it locally. It requires that you set these environment variables: `BUCKET`, `FILE_PATH`, `ACCESS_KEY_ID`, `SECRET_ACCESS_KEY`, `REGION`.
```bash
$ elixir examples/source_example.exs
```
## Copyright and License
Copyright 2024, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_aws_plugin)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_aws_plugin)
Licensed under the [Apache License, Version 2.0](LICENSE)