A simple wrapper for ffmpeg-cli
Project description
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', codec) >>> FFmpeg('ffmpeg', input_video, output_video) <FFmpeg ['ffmpeg', '-i', 'old', '-vcodec', 'webm', 'new']>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ffmpegwrapper-0.1-dev.tar.gz
(5.0 kB
view hashes)