Versions in this module Expand all Collapse all v0 v0.3.0 Jan 24, 2022 Changes in this version + type Synchronizer struct + func NewSynchronizer() (*Synchronizer, error) + func (s *Synchronizer) Close() error + type Transcoder struct + func NewTranscoder(from webrtc.RTPCodecParameters, options ...TranscoderOption) (*Transcoder, error) + func (t *Transcoder) Close() error + func (t *Transcoder) OutputCodec() webrtc.RTPCodecParameters + func (t *Transcoder) ReadRTP() (*rtp.Packet, error) + func (t *Transcoder) WriteRTP(p *rtp.Packet) error + type TranscoderOption func(*Transcoder) + func ToOutputCodec(codec webrtc.RTPCodecParameters) TranscoderOption + func ViaGStreamerEncoder(pipeline string) TranscoderOption + func WithSynchronizer(s *Synchronizer) TranscoderOption