diff --git a/README.md b/README.md index f0a2e25..0505fc7 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,14 @@ The package can be installed by adding `ex_rtmp` to your list of dependencies in ```elixir def deps do [ - {:ex_rtmp, "~> 0.3.1"} + {:ex_rtmp, "~> 0.4.0"} ] end ``` +## Enhanced RTMP +Enhanced RTMP is supported to some extent, there's a lack of support for `Multitrack` and `ModEx` packet types for audio and video. + ## Usage See the [examples](./examples) folder. diff --git a/examples/publish_mp4.exs b/examples/publish_mp4.exs index 585dc67..64c0180 100644 --- a/examples/publish_mp4.exs +++ b/examples/publish_mp4.exs @@ -1,4 +1,4 @@ -Mix.install([:ex_mp4, :media_codecs, {:ex_rtmp, path: "."}]) +Mix.install([:ex_mp4, :media_codecs, :ex_rtmp]) defmodule Publisher do use GenServer diff --git a/mix.exs b/mix.exs index 88aa2ee..300efa0 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ExRTMP.MixProject do use Mix.Project - @version "0.3.1" + @version "0.4.0" @github_url "https://github.com/elixir-streaming/ex_rtmp" def project do