From d41fc387563bfca11f79cbc3d979aad0f37a4fa3 Mon Sep 17 00:00:00 2001 From: Billal GHILAS Date: Thu, 8 Jan 2026 22:13:43 +0100 Subject: [PATCH 1/3] Release v0.4.0 --- README.md | 5 ++++- mix.exs | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0a2e25..de5b602 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` tags. + ## Usage See the [examples](./examples) folder. 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 From b384743a1247e23ae93c50994d96222cc7b4d8d8 Mon Sep 17 00:00:00 2001 From: Billal GHILAS Date: Thu, 8 Jan 2026 22:25:43 +0100 Subject: [PATCH 2/3] update example --- examples/publish_mp4.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 30f8cfd911c48414f9e57090fa59b56033ac61f7 Mon Sep 17 00:00:00 2001 From: Billal GHILAS Date: Thu, 8 Jan 2026 22:27:05 +0100 Subject: [PATCH 3/3] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de5b602..0505fc7 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ end ``` ## Enhanced RTMP -Enhanced RTMP is supported to some extent, there's a lack of support for `Multitrack` and `ModEx` tags. +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.