Skip to content

Commit 51ba553

Browse files
authored
Release v0.4.0 (#15)
* Release v0.4.0 * update example * Update readme
1 parent 636c150 commit 51ba553

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ The package can be installed by adding `ex_rtmp` to your list of dependencies in
1212
```elixir
1313
def deps do
1414
[
15-
{:ex_rtmp, "~> 0.3.1"}
15+
{:ex_rtmp, "~> 0.4.0"}
1616
]
1717
end
1818
```
1919

20+
## Enhanced RTMP
21+
Enhanced RTMP is supported to some extent, there's a lack of support for `Multitrack` and `ModEx` packet types for audio and video.
22+
2023
## Usage
2124
See the [examples](./examples) folder.
2225

examples/publish_mp4.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Mix.install([:ex_mp4, :media_codecs, {:ex_rtmp, path: "."}])
1+
Mix.install([:ex_mp4, :media_codecs, :ex_rtmp])
22

33
defmodule Publisher do
44
use GenServer

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule ExRTMP.MixProject do
22
use Mix.Project
33

4-
@version "0.3.1"
4+
@version "0.4.0"
55
@github_url "https://github.com/elixir-streaming/ex_rtmp"
66

77
def project do

0 commit comments

Comments
 (0)