lieff / minimp4

Minimalistic MP4 mux/demux single header library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mini MP4

Build Status

Easy embeddable MP4 mux/demux library.

Usage

Muxing

Muxing can be done using 3 modes. Default mode uses one big mdat chunk:

default

This is most efficient mode, but disadvantage is that we need go back and patch mdat chunk size. This can be a problem in some cases, for example if stream transfered over network. To workaround this sequential mode is used:

default

This mode do not make any backwards seek. And last mode is fragmented aka fMP4.

default

This mode stores track information first and spreads indexes across all stream, so decoding can start before whole stream available. This mode is sequential too and usually used by browsers and HLS streaming.

Bindings

Interesting links

About

Minimalistic MP4 mux/demux single header library

License:Creative Commons Zero v1.0 Universal


Languages

Language:C 98.5%Language:Shell 1.5%