Metadata-Version: 1.1
Name: pypi-libavwrapper
Version: 0.1.dev0
Summary: A simple wrapper for avconv-cli
Home-page: http://github.com/conrado/libavwrapper
Author: Conrado Buhrer
Author-email: conrado@buhrer.net
License: BSD
Description: 
        LibAVWrapper
        ~~~~~~~~~~~~~
        
        LibAVWrapper is a small wrapper for the ffmpeg encoder. You can append
        Codec, Filters and other ParameterStores to the AVConv class and then run the
        resulting command.
        
        >>> from libavwrapper import AVConv , Input, Output, VideoCodec, VideoFilter
        >>> codec = VideoCodec('webm')
        >>> input_video = Input('old')
        >>> output_video = Output('new', videofilter, codec)
        >>> AVConv('avconv', input_video, output_video)
        <AVConv ['avconv', '-i', 'old', '-vcodec', 'webm', 'new']>
        
        
        
Keywords: Video Convert avconv
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Software Development :: Libraries :: Python Modules
