Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion examples/publish_mp4.exs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -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
Expand Down