ExRtsp

Build Status

RTSP library

Features:

Quick start

Create a client

iex> {:ok, pid} = ExRtmp.Client.start_link host: "127.0.0.1", port: 554
CSeq: 0
Cache-Control: no-store
...

Send a request

iex> req = ExRtsp.Request.new method: :options
iex> GenServer.call pid, {:send_req, msg}
CSeq: 1
Cache-Control: no-store
...

Installation

If available in Hex, the package can be installed by adding ex_rtsp to your list of dependencies in mix.exs:

def deps do
  [
    {:ex_rtsp, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/ex_rtsp.