Metadata-Version: 1.1
Name: pymp4parse
Version: 0.2.2
Summary: MP4 / ISO base media file format (ISO/IEC 14496-12 - MPEG-4 Part 12) file parser
Home-page: https://github.com/use-sparingly/pymp4parse
Author: Alastair Mccormack
Author-email: alastair at alu.media
License: The MIT License
Description: MP4 ISO Base Media File Format Parser
        =====================================
        
        Parses out and returns a limited set of MP4 boxes
        
        Usage:
        ======
        
        Parse boxes
        -----------
        
        ::
        
            import pymp4parse
        
            boxes = pymp4parse.F4VParser.parse(filename='my.mp4')
            for box in boxes:
                print box.type
                print dir(box)
        
        Check is MP4 file
        -----------------
        
        ::
        
            >>> pymp4parse.F4VParser.is_mp4(filename='my.mp4')
            True
            >>> pymp4parse.F4VParser.is_mp4(filename='/etc/resolv.conf')
            False
        
        Installation
        ------------
        
        ::
        
            pip install https://github.com/use-sparingly/mp4parse/zipball/master
        
        Prerequisites
        ~~~~~~~~~~~~~
        
        Pip should install prerequisites. In case you're manually installing,
        you'll need:
        
        1. Bitstring - https://pypi.python.org/pypi/bitstring/
        
Platform: UNKNOWN
Requires: bitstring
