mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-15 19:17:12 +00:00
* add hlsVariant parameter * hls: split muxer into variants * hls: implement fmp4 segments * hls muxer: implement low latency mode * hls muxer: support audio with fmp4 mode * hls muxer: rewrite file router * hls muxer: implement preload hint * hls muxer: add various error codes * hls muxer: use explicit flags * hls muxer: fix error in aac pts * hls muxer: fix sudden freezes with video+audio * hls muxer: skip empty parts * hls muxer: fix video FPS * hls muxer: add parameter hlsPartDuration * hls muxer: refactor fmp4 muxer * hls muxer: fix CAN-SKIP-UNTIL * hls muxer: refactor code * hls muxer: show only parts of last 2 segments * hls muxer: implementa playlist delta updates * hls muxer: change playlist content type * hls muxer: improve video dts precision * hls muxer: fix video sample flags * hls muxer: improve iphone audio support * hls muxer: improve mp4 timestamp precision * hls muxer: add offset between pts and dts * hls muxer: close muxer in case of error * hls muxer: stop logging requests with the info level * hls muxer: rename entry into sample * hls muxer: compensate video dts error over time * hls muxer: change default segment count * hls muxer: add starting gap * hls muxer: set default part duration to 200ms * hls muxer: fix audio-only streams on ios * hls muxer: add playsinline attribute to video tag of default web page * hls muxer: keep mpegts as the default hls variant * hls muxer: implement encryption * hls muxer: rewrite dts estimation * hls muxer: improve DTS precision * hls muxer: use right SPS/PPS for each sample * hls muxer: adjust part duration dynamically * add comments * update readme * hls muxer: fix memory leak * hls muxer: decrease ram consumption
96 lines
1.9 KiB
Go
96 lines
1.9 KiB
Go
package hls
|
|
|
|
import (
|
|
"io"
|
|
"time"
|
|
|
|
"github.com/aler9/gortsplib"
|
|
)
|
|
|
|
// MuxerFileResponse is a response of the Muxer's File() func.
|
|
type MuxerFileResponse struct {
|
|
Status int
|
|
Header map[string]string
|
|
Body io.Reader
|
|
}
|
|
|
|
// Muxer is a HLS muxer.
|
|
type Muxer struct {
|
|
primaryPlaylist *muxerPrimaryPlaylist
|
|
variant muxerVariant
|
|
}
|
|
|
|
// NewMuxer allocates a Muxer.
|
|
func NewMuxer(
|
|
variant MuxerVariant,
|
|
segmentCount int,
|
|
segmentDuration time.Duration,
|
|
partDuration time.Duration,
|
|
segmentMaxSize uint64,
|
|
videoTrack *gortsplib.TrackH264,
|
|
audioTrack *gortsplib.TrackAAC,
|
|
) (*Muxer, error) {
|
|
m := &Muxer{}
|
|
|
|
switch variant {
|
|
case MuxerVariantMPEGTS:
|
|
m.variant = newMuxerVariantMPEGTS(
|
|
segmentCount,
|
|
segmentDuration,
|
|
segmentMaxSize,
|
|
videoTrack,
|
|
audioTrack,
|
|
)
|
|
|
|
case MuxerVariantFMP4:
|
|
m.variant = newMuxerVariantFMP4(
|
|
false,
|
|
segmentCount,
|
|
segmentDuration,
|
|
partDuration,
|
|
segmentMaxSize,
|
|
videoTrack,
|
|
audioTrack,
|
|
)
|
|
|
|
default: // MuxerVariantLowLatency
|
|
m.variant = newMuxerVariantFMP4(
|
|
true,
|
|
segmentCount,
|
|
segmentDuration,
|
|
partDuration,
|
|
segmentMaxSize,
|
|
videoTrack,
|
|
audioTrack,
|
|
)
|
|
}
|
|
|
|
m.primaryPlaylist = newMuxerPrimaryPlaylist(variant != MuxerVariantMPEGTS, videoTrack, audioTrack)
|
|
|
|
return m, nil
|
|
}
|
|
|
|
// Close closes a Muxer.
|
|
func (m *Muxer) Close() {
|
|
m.variant.close()
|
|
}
|
|
|
|
// WriteH264 writes H264 NALUs, grouped by timestamp.
|
|
func (m *Muxer) WriteH264(pts time.Duration, nalus [][]byte) error {
|
|
return m.variant.writeH264(pts, nalus)
|
|
}
|
|
|
|
// WriteAAC writes AAC AUs, grouped by timestamp.
|
|
func (m *Muxer) WriteAAC(pts time.Duration, aus [][]byte) error {
|
|
return m.variant.writeAAC(pts, aus)
|
|
}
|
|
|
|
// File returns a file reader.
|
|
func (m *Muxer) File(name string, msn string, part string, skip string) *MuxerFileResponse {
|
|
if name == "index.m3u8" {
|
|
return m.primaryPlaylist.file()
|
|
}
|
|
|
|
return m.variant.file(name, msn, part, skip)
|
|
}
|