Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/membraneframework/membrane_wav_plugin
Plugin providing elements handling audio in WAV file format.
https://github.com/membraneframework/membrane_wav_plugin
Last synced: 2 days ago
JSON representation
Plugin providing elements handling audio in WAV file format.
- Host: GitHub
- URL: https://github.com/membraneframework/membrane_wav_plugin
- Owner: membraneframework
- License: apache-2.0
- Created: 2021-07-23T11:22:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T15:11:05.000Z (8 months ago)
- Last Synced: 2024-10-29T08:45:04.364Z (9 days ago)
- Language: Elixir
- Homepage:
- Size: 141 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane WAV Plugin
[![Hex.pm](https://img.shields.io/hexpm/v/membrane_wav_plugin.svg)](https://hex.pm/packages/membrane_wav_plugin)
[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](https://hexdocs.pm/membrane_wav_plugin)
[![CircleCI](https://circleci.com/gh/membraneframework/membrane_wav_plugin.svg?style=svg)](https://circleci.com/gh/membraneframework/membrane_wav_plugin)Plugin providing elements handling audio in WAV file format.
It is part of [Membrane Multimedia Framework](https://membraneframework.org).
## Installation
The package can be installed by adding `membrane_wav_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_wav_plugin, "~> 0.10.1"}
]
end
```
## ParserThe Parser requires a WAV file on the input and provides a raw audio in uncompressed, PCM format on
the output.Parsing steps:
- Reading WAV header
- Extracting audio metadata and sending it through a pad to the next element
- Sending only audio samples to the next elementsIt can parse only uncompressed audio.
## Serializer
The Serializer adds WAV header to the raw audio in uncompressed, PCM format.
### Warning
The Serializer creates header with invalid blocks which depend on the file size. You can bypass this
using `Membrane.File.Sink` to save the file or fixing the header afterwards with `Membrane.WAV.Postprocessing`
if you need to use any other sink.## Sample usage
```elixir
defmodule Mixing.Pipeline do
use Membrane.Pipeline@impl true
def handle_init(_ctx, _opts) do
spec = child(:file_src, %Membrane.File.Source{location: "/tmp/input.wav"})
|> child(:parser, Membrane.WAV.Parser)
|> child(:converter, %Membrane.FFmpeg.SWResample.Converter{
input_stream_format: %Membrane.RawAudio{channels: 1, sample_rate: 16_000, sample_format: :s16le},
output_stream_format: %Membrane.RawAudio{channels: 2, sample_rate: 48_000, sample_format: :s16le}
})
|> child(:serializer, Membrane.WAV.Serializer)
|> child(:file_sink, %Membrane.File.Sink{location: "/tmp/output.wav"}){[spec: spec], %{}}
end
end
```## Copyright and License
Copyright 2021, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane)
[![Software Mansion](https://logo.swmansion.com/logo?color=white&variant=desktop&width=200&tag=membrane-github)](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane)
Licensed under the [Apache License, Version 2.0](LICENSE)