Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 1015 Bytes

File metadata and controls

52 lines (35 loc) · 1015 Bytes

PyAV Documentation

PyAV is a Pythonic binding for FFmpeg or Libav. We aim to provide all of the power and control of the underlying library, but manage the gritty details as much as possible.

Currently we provide the basics of:

Basic Demo

import av

container = av.open('/path/to/video.mp4')

for frame in container.decode(video=0):
    frame.to_image().save('/path/to/frame-%04d.jpg' % frame.index)

Contents

.. toctree::
    :maxdepth: 2

    about
    installation
    api
    hacking
    includes


Indices and Tables