Skip to content

elixir-webrtc/ex_rtp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExRTP

Hex.pm API Docs CI codecov

Implementation of the RTP protocol in Elixir.

Implements:

Includes out-of-the-box support for these RTP header extensions:

New RTP header extensions can be added by implementing the ExRTP.Packet.Extension behaviour.

See documentation for usage examples.

Installation

Add ex_rtp to dependencies in mix.exs:

def deps do
  [
    {:ex_rtp, "~> 0.4.0"}
  ]
end