Documentation ¶
Overview ¶
Package fmp4 contains a fragmented-MP4 reader and writer.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Codec ¶
type Codec interface { IsVideo() bool // contains filtered or unexported methods }
Codec is a fMP4 codec.
type CodecAC3 ¶ added in v1.4.0
type CodecAC3 struct { SampleRate int ChannelCount int Fscod uint8 Bsid uint8 Bsmod uint8 Acmod uint8 LfeOn bool BitRateCode uint8 }
CodecAC3 is the AC-3 codec.
type CodecMJPEG ¶ added in v1.4.0
CodecMJPEG is the M-JPEG codec.
func (CodecMJPEG) IsVideo ¶ added in v1.4.0
func (CodecMJPEG) IsVideo() bool
IsVideo implements Codec.
type CodecMPEG1Audio ¶ added in v1.3.0
CodecMPEG1Audio is a MPEG-1 Audio codec.
func (CodecMPEG1Audio) IsVideo ¶ added in v1.3.0
func (CodecMPEG1Audio) IsVideo() bool
IsVideo implements Codec.
type CodecMPEG1Video ¶ added in v1.3.0
type CodecMPEG1Video struct {
Config []byte
}
CodecMPEG1Video is a MPEG-1 Video codec.
func (CodecMPEG1Video) IsVideo ¶ added in v1.3.0
func (CodecMPEG1Video) IsVideo() bool
IsVideo implements Codec.
type CodecMPEG4Audio ¶
type CodecMPEG4Audio struct {
mpeg4audio.Config
}
CodecMPEG4Audio is a MPEG-4 Audio codec.
type CodecMPEG4Video ¶ added in v1.3.0
type CodecMPEG4Video struct {
Config []byte
}
CodecMPEG4Video is a MPEG-4 Video codec.
func (CodecMPEG4Video) IsVideo ¶ added in v1.3.0
func (CodecMPEG4Video) IsVideo() bool
IsVideo implements Codec.
type CodecVP9 ¶
type CodecVP9 struct { Width int Height int Profile uint8 BitDepth uint8 ChromaSubsampling uint8 ColorRange bool }
CodecVP9 is the VP9 codec.
type Init ¶
type Init struct {
Tracks []*InitTrack
}
Init is a fMP4 initialization block.
type InitTrack ¶
type InitTrack struct { // ID, starts from 1. ID int // time scale. TimeScale uint32 // maximum bitrate. // it defaults to 1MB for video tracks, 128k for audio tracks. MaxBitrate uint32 // average bitrate. // it defaults to 1MB for video tracks, 128k for audio tracks. AvgBitrate uint32 // codec. Codec Codec }
InitTrack is a track of Init.
type PartSample ¶
PartSample is a sample of a PartTrack.
func NewPartSampleAV1 ¶
func NewPartSampleAV1(sequenceHeaderPresent bool, tu [][]byte) (*PartSample, error)
NewPartSampleAV1 creates a sample with AV1 data.
func NewPartSampleH26x ¶
func NewPartSampleH26x(ptsOffset int32, randomAccessPresent bool, au [][]byte) (*PartSample, error)
NewPartSampleH26x creates a sample with H26x data.
func (PartSample) GetAV1 ¶
func (ps PartSample) GetAV1() ([][]byte, error)
GetAV1 gets AV1 data from the sample.
func (PartSample) GetH26x ¶
func (ps PartSample) GetH26x() ([][]byte, error)
GetH26x gets H26x data from the sample.
type PartTrack ¶
type PartTrack struct { ID int BaseTime uint64 Samples []*PartSample }
PartTrack is a track of Part.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package seekablebuffer contains a bytes.Buffer with an additional Seek() method.
|
Package seekablebuffer contains a bytes.Buffer with an additional Seek() method. |