11 lines
554 B
Go
11 lines
554 B
Go
// Package webrtc implements the Dragon Fork WebRTC egress module.
|
|
//
|
|
// It exposes a WHEP (WebRTC-HTTP Egress Protocol) HTTP endpoint and serves
|
|
// live RTP produced by an FFmpeg process on a local UDP socket to one or
|
|
// more WebRTC peer connections built with Pion.
|
|
//
|
|
// This package is additive: it does not modify existing datarhei ingest,
|
|
// transcode, or non-WebRTC output code paths. The only contact with
|
|
// existing code is a new URL scheme ("webrtc://") registered with the
|
|
// output resolver (done in milestone M2, not here).
|
|
package webrtc
|