Metadata-Version: 1.1
Name: MediaInfo
Version: 0.0.6
Summary: A Python wrapper around the ffprobe or mediainfo command line utility
Home-page: https://github.com/laodifang/MediaInfo
Author: Ren Peng
Author-email: ithink.ren@gmail.com
License: MIT
Description: |
        
        NAME
        ====
        
            A Python wrapper around the MediaInfo command line utility
        
        
        |
        
        SYNOPSIS
        ========
        
        .. code-block::
        
        
            from MediaInfo import MediaInfo
        
            info     = Mediainfo(filename = '/media/test.ts')
            infoData = info.getInfo()
        
            info     = Mediainfo(filename = '/media/test.ts', cmd = '/usr/bin/ffprobe')
            infoData = info.getInfo()
        
            info     = Mediainfo(filename = '/media/test.ts', cmd = '/usr/bin/mediainfo')
            infoData = info.getInfo()
        
        
        |
        
        DESCRIPTION
        ===========
            MediaInfo gets information of media through ffprobe by default. Alternatively, ffprobe and mediainfo are also supported in configuration.
Keywords: Python ffmpeg ffprobe mediainfo
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3 :: Only
