ExRtsp
RTSP library
Features:
- [x] SIP decoder
- [x] SIP encoder
- [x] RTSP Client
- [x] RTSP Server
- [ ] RTP transmission
- [ ] RTCP transmission
Quick start
Create a client
iex> {:ok, pid} = ExRtmp.Client.start_link host: "127.0.0.1", port: 554CSeq: 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"}
]
endDocumentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/ex_rtsp.