Skip to main content

A simple wrapper for avconv-cli

Project description

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']>

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page