Skip to content

Commit fc18479

Browse files
committed
Update dependency provider
1 parent 8219586 commit fc18479

File tree

4 files changed

+34
-34
lines changed

4 files changed

+34
-34
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ It is a part of [Membrane Multimedia Framework](https://membrane.stream).
1313
Add the following line to your `deps` in `mix.exs`. Run `mix deps.get`.
1414

1515
```elixir
16-
{:membrane_ffmpeg_swresample_plugin, "~> 0.20.2"}
16+
{:membrane_ffmpeg_swresample_plugin, "~> 0.20.3"}
1717
```
1818

1919
The precompiled builds of the [ffmpeg](https://www.ffmpeg.org) will be pulled and linked automatically. However, should there be any problems, consider installing it manually.

bundlex.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ defmodule Membrane.FFmpeg.SWResample.BundlexProject do
1515
deps: [membrane_common_c: :membrane, unifex: :unifex],
1616
os_deps: [
1717
ffmpeg: [
18-
{:precompiled, Membrane.PrecompiledDependencyProvider.get_dependency_url(:ffmpeg),
18+
{:precompiled,
19+
Membrane.PrecompiledDependencyProvider.get_dependency_url(:ffmpeg, version: "6.0.1"),
1920
["libswresample", "libavutil"]},
2021
{:pkg_config, ["libswresample", "libavutil"]}
2122
]

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Membrane.FFmpeg.SWResample.Mixfile do
22
use Mix.Project
33

44
@github_url "https://github.com/membraneframework/membrane_ffmpeg_swresample_plugin"
5-
@version "0.20.2"
5+
@version "0.20.3"
66

77
def project do
88
[
@@ -46,7 +46,7 @@ defmodule Membrane.FFmpeg.SWResample.Mixfile do
4646
{:unifex, "~> 1.1"},
4747
{:membrane_common_c, "~> 0.16.0"},
4848
{:bundlex, "~> 1.2"},
49-
{:membrane_precompiled_dependency_provider, "~> 0.1.0"},
49+
{:membrane_precompiled_dependency_provider, "~> 0.2.1"},
5050
# Testing
5151
{:mockery, "~> 2.1", runtime: false},
5252
{:membrane_file_plugin, "~> 0.16.0", only: :test},

0 commit comments

Comments
 (0)