Skip to content
/ isomedia Public
forked from flxf/isomedia

This is another ISO base media format file parser.

License

Notifications You must be signed in to change notification settings

0/isomedia

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ISO base media file format parser

isomedia is a library used to parse ISO base media file formats (https://en.wikipedia.org/wiki/ISO_base_media_file_format). 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

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

moov = [atom for atom in isofile.children if atom.type() == 'moov']

About

This is another ISO base media format file parser.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published