-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
52 lines (45 loc) · 1.25 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
defmodule Membrane.VideoMixer.MixProject do
use Mix.Project
@version "1.2.1"
@link "https://github.com/kim-company/membrane_video_mixer_plugin"
def project do
[
app: :membrane_video_mixer_plugin,
version: @version,
source_url: @link,
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: "Mixes multiple video inputs to a single output using ffmpeg filters."
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:membrane_core, ">= 0.11.0"},
{:membrane_raw_video_format, ">= 0.2.0"},
{:video_mixer, "~> 1.0.0"},
# testing
{:membrane_file_plugin, ">= 0.0.0"},
{:membrane_h264_ffmpeg_plugin, ">= 0.0.0"},
{:membrane_framerate_converter_plugin, ">= 0.5.0"}
]
end
defp package do
[
maintainers: ["KIM Keep In Mind"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @link}
]
end
end