isomedia

This is another ISO base media format file parser.


Keywords
mp4, isom
License
Other
Install
pip install isomedia==0.2.3

Documentation

ISO base media file format parser

isomedia is a library used to parse ISO base media file formats. In particular, it offers simple extensions to parse MOV, MP4 and 3GP video file formats that derive from the ISO base media file format.

Usage

import isomedia

with open('selfie_vine.mp4', 'rb') as f:
    isofile = isomedia.load(f)

    moov = [atom for atom in isofile.atoms if atom.type == 'moov']