ppc64le/linux/: av-15.1.0+ppc64le1 metadata and description

Simple index

Pythonic bindings for FFmpeg's libraries.

author_email WyattBlue <[email protected]>, Jeremy Lainé <[email protected]>
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • Natural Language :: English
  • Operating System :: MacOS :: MacOS X
  • Operating System :: POSIX
  • Operating System :: Unix
  • Operating System :: Microsoft :: Windows
  • Programming Language :: Cython
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3.13
  • Topic :: Software Development :: Libraries :: Python Modules
  • Topic :: Multimedia :: Sound/Audio
  • Topic :: Multimedia :: Sound/Audio :: Conversion
  • Topic :: Multimedia :: Video
  • Topic :: Multimedia :: Video :: Conversion
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/markdown
dynamic license-file
license BSD-3-Clause
license_file AUTHORS.rst
project_urls
  • Bug Tracker, https://github.com/PyAV-Org/PyAV/discussions/new?category=4-bugs
  • Source Code, https://github.com/PyAV-Org/PyAV
  • homepage, https://pyav.basswood-io.com
requires_python >=3.9
File Tox results History
av-15.1.0+ppc64le1-cp310-cp310-manylinux_2_34_ppc64le.whl
Size
19 MB
Type
Python Wheel
Python
3.10
av-15.1.0+ppc64le1-cp311-cp311-manylinux_2_34_ppc64le.whl
Size
19 MB
Type
Python Wheel
Python
3.11
av-15.1.0+ppc64le1-cp312-cp312-manylinux_2_34_ppc64le.whl
Size
19 MB
Type
Python Wheel
Python
3.12
av-15.1.0+ppc64le1-cp313-cp313-manylinux_2_34_ppc64le.whl
Size
20 MB
Type
Python Wheel
Python
3.13
av-15.1.0+ppc64le1-cp39-cp39-manylinux_2_34_ppc64le.whl
Size
19 MB
Type
Python Wheel
Python
3.9

PyAV

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


GitHub Test Status Documentation Python Package Index Conda Forge

PyAV is for direct and precise access to your media via containers, streams, packets, codecs, and frames. It exposes a few transformations of that data, and helps you get your data to/from other packages (e.g. Numpy and Pillow).

This power does come with some responsibility as working with media is horrendously complicated and PyAV can't abstract it away or make all the best decisions for you. If the ffmpeg command does the job without you bending over backwards, PyAV is likely going to be more of a hindrance than a help.

But where you can't work without it, PyAV is a critical tool.

Installation

Binary wheels are provided on PyPI for Linux, MacOS and Windows linked against the latest stable version of ffmpeg. You can install these wheels by running:

pip install av

Another way of installing PyAV is via conda-forge:

conda install av -c conda-forge

See the Conda install docs to get started with (mini)Conda.

Alternative installation methods

Due to the complexity of the dependencies, PyAV is not always the easiest Python package to install from source. If you want to use your existing ffmpeg (must be the correct major version), the source version of PyAV is on PyPI:

[!WARNING] You must be in a posix env, and have the correct version of ffmpeg installed on your system.

pip install av --no-binary av

Installing From Source

Here's how to build PyAV from source. You must use MSYS2 when using Windows.

git clone https://github.com/PyAV-Org/PyAV.git
cd PyAV
source scripts/activate.sh

# Build ffmpeg from source. You can skip this step
# if ffmpeg is already installed.
./scripts/build-deps

# Build PyAV
make

# Testing
make test

# Install globally
deactivate
pip install .

Have fun, read the docs, come chat with us, and good luck!

Export Classification Notice

The software hosted on this website consists of publicly available open‑source packages. To the extent U.S. export regulations apply, software that is publicly available as described in 15 C.F.R. §§ 734.7 (for non-encryption software) or 742.15(b) (for encryption software) is not subject to the Export Administration Regulations (EAR). Users are responsible for complying with all applicable export laws and regulations.