https://github.com/membraneframework/membrane_file_plugin
Membrane plugin for reading and writing to files
https://github.com/membraneframework/membrane_file_plugin
Last synced: 6 months ago
JSON representation
Membrane plugin for reading and writing to files
- Host: GitHub
- URL: https://github.com/membraneframework/membrane_file_plugin
- Owner: membraneframework
- License: apache-2.0
- Created: 2017-01-26T11:41:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-02-15T14:06:03.000Z (over 2 years ago)
- Last Synced: 2024-03-14T21:06:28.129Z (about 2 years ago)
- Language: Elixir
- Homepage:
- Size: 191 KB
- Stars: 6
- Watchers: 13
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane File plugin
[](https://hex.pm/packages/membrane_file_plugin)
[](https://hexdocs.pm/membrane_file_plugin/)
[](https://circleci.com/gh/membraneframework/membrane_file_plugin)
Membrane plugin for reading and writing to files.
It is part of [Membrane Multimedia Framework](https://membraneframework.org).
## Installation
The package can be installed by adding `membrane_file_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_file_plugin, "~> 0.17.2"}
]
end
```
## Usage examples
### File.Sink and File.Source
`Source` and `Sink` elements allow reading from and writing to a file, respectively.
The pipeline in `./examples/sink_and_source.exs` will copy the contents of that script to `/tmp/example.exs`
### File.MultiSink
`MultiSink` allows writing to multiple files, with the input being split into parts.
The example in `./examples/sink_multi.exs` will generate 0-filled input file of 1024 bytes (`input.bin`)
and copy first 10-bytes to `/tmp/output0.bin` and the rest to `/tmp/output1.bin`.
## Copyright and License
Copyright 2018, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane)
Licensed under the [Apache License, Version 2.0](LICENSE)