isobmff-builder-0.1.0.1: A (bytestring-) builder for the ISO base media file format ISO-14496-12

Safe HaskellNone
LanguageHaskell2010

Data.ByteString.IsoBaseFileFormat.Boxes.MovieBox

Contents

Description

Meta data for a presentation of a movie.

Synopsis

Documentation

type MovieBox = Box "moov" Source #

The metadata for a presentation, a single MovieBox which occurs only once and top-level. It is pretty empty on it's own, but it contains nested boxes with all the relevant meta data.

movieBox :: forall ts. ValidBoxes "moov" ts => Boxes "moov" ts -> Box "moov" Source #

Compose a movie box from the required Boxes.

movieBoxContainer :: Container "moov" Source #

The movie box container, use this to create movie boxes filled with nested boxes, for example:

 xxx :: Box "moov"
 xxx = movieBox
         (movieBoxContainer
          :- movieHeaderBox (MovieHeader ...)
          :- trackBox
             (trackBoxContainer
              :- trackHeaderBox
              :- trackReferenceBox
              :- trackGroupingIndication))

Orphan instances

BoxRules Symbol "moov" Source # 

Associated Types

type RestrictedTo "moov" (t :: "moov") :: Maybe [k] Source #

type IsTopLevelBox "moov" (t :: "moov") :: Bool Source #

type RequiredNestedBoxes "moov" (t :: "moov") :: [k] Source #

type GetCardinality "moov" (t :: "moov") (c :: "moov") :: Cardinality Source #