Metadata-Version: 1.0
Name: ffmpegwrapper
Version: 0.1-dev
Summary: A simple wrapper for ffmpeg-cli
Home-page: http://github.com/interrupted/ffmpegwrapper
Author: Mathias Koehler
Author-email: mail@mathias.im
License: BSD
Description: 
        FFmpegwrapper
        ~~~~~~~~~~~~~
        
        FFmpegWrapper is a small wrapper for the ffmpeg encoder. You can append
        Codec, Filters and other OptionStores to the FFmpeg class and then run the
        resulting command.
        
        >>> from ffmpegwrapper import FFmpeg, Input, Output, VideoCodec, VideoFilter
        >>> codec = VideoCodec('webm')
        >>> input_video = Input('old')
        >>> output_video = Output('new', videofilter, codec)
        >>> FFmpeg('ffmpeg', input_video, output_video)
        <FFmpeg ['ffmpeg', '-i', 'old', '-vcodec', 'webm', 'new']>
        
        
        
Keywords: Video Convert Ffmpeg
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
