Packages
Plugin performing audio conversion, resampling and channel mixing. Uses SWResample module of [FFmpeg](https://www.ffmpeg.org/) library.
Current section
Files
Jump to
Current section
Files
membrane_ffmpeg_swresample_plugin
bundlex.exs
bundlex.exs
defmodule Membrane.FFmpeg.SWResample.BundlexProject do
use Bundlex.Project
def project do
[
natives: natives()
]
end
defp natives() do
[
converter: [
interface: :nif,
sources: ["converter.c", "converter_lib.c"],
deps: [membrane_common_c: :membrane, unifex: :unifex],
pkg_configs: ["libavutil", "libswresample"],
preprocessor: Unifex
]
]
end
end