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']