{"id":14985043,"url":"https://github.com/pyav-org/pyav","last_synced_at":"2025-12-17T20:31:59.778Z","repository":{"id":5645905,"uuid":"6854611","full_name":"PyAV-Org/PyAV","owner":"PyAV-Org","description":"﻿﻿Pythonic bindings for FFmpeg's libraries.","archived":false,"fork":false,"pushed_at":"2025-04-13T16:48:13.000Z","size":17206,"stargazers_count":2730,"open_issues_count":0,"forks_count":383,"subscribers_count":59,"default_branch":"main","last_synced_at":"2025-04-18T14:10:20.699Z","etag":null,"topics":["ffmpeg","pyav","python"],"latest_commit_sha":null,"homepage":"https://pyav.basswood-io.com/","language":"Cython","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PyAV-Org.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.py","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-11-25T19:17:06.000Z","updated_at":"2025-04-18T10:45:45.000Z","dependencies_parsed_at":"2023-10-21T12:45:59.035Z","dependency_job_id":"73a689e1-04a2-47a2-bb1b-0536ca01d75d","html_url":"https://github.com/PyAV-Org/PyAV","commit_stats":{"total_commits":1476,"total_committers":95,"mean_commits":"15.536842105263158","dds":0.5196476964769647,"last_synced_commit":"d8819800d14255199915315fb4ce0f01ee8b94eb"},"previous_names":["mikeboers/pyav"],"tags_count":52,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyAV-Org%2FPyAV","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyAV-Org%2FPyAV/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyAV-Org%2FPyAV/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyAV-Org%2FPyAV/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PyAV-Org","download_url":"https://codeload.github.com/PyAV-Org/PyAV/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250230522,"owners_count":21396304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ffmpeg","pyav","python"],"created_at":"2024-09-24T14:10:10.164Z","updated_at":"2025-12-17T20:31:59.705Z","avatar_url":"https://github.com/PyAV-Org.png","language":"Cython","readme":"PyAV\n====\n\nPyAV is a Pythonic binding for the [FFmpeg][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.\n\n---\n\n[![GitHub Test Status][github-tests-badge]][github-tests] [![Documentation][docs-badge]][docs] [![Python Package Index][pypi-badge]][pypi] [![Conda Forge][conda-badge]][conda]\n\nPyAV 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).\n\nThis 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.\n\nBut where you can't work without it, PyAV is a critical tool.\n\n\nInstallation\n------------\n\nBinary wheels are provided on [PyPI][pypi] for Linux, MacOS and Windows linked against the latest stable version of ffmpeg. You can install these wheels by running:\n\n```bash\npip install av\n```\n\nAnother way of installing PyAV is via [conda-forge][conda-forge]:\n\n```bash\nconda install av -c conda-forge\n```\n\nSee the [Conda install][conda-install] docs to get started with (mini)Conda.\n\n\nAlternative installation methods\n--------------------------------\n\nDue 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][pypi]:\n\n\u003e [!WARNING]\n\u003e You must be in a posix env, and have the correct version of ffmpeg installed on your system.\n\n```bash\npip install av --no-binary av\n```\n\n\nInstalling From Source\n----------------------\n\nHere's how to build PyAV from source. You must use [MSYS2](https://www.msys2.org/) when using Windows.\n\n```bash\ngit clone https://github.com/PyAV-Org/PyAV.git\ncd PyAV\nsource scripts/activate.sh\n\n# Build ffmpeg from source. You can skip this step\n# if ffmpeg is already installed.\n./scripts/build-deps\n\n# Build PyAV\nmake\n\n# Testing\nmake test\n\n# Install globally\ndeactivate\npip install .\n```\n\n---\n\nHave fun, [read the docs][docs], [come chat with us][discuss], and good luck!\n\n\n\n[conda-badge]: https://img.shields.io/conda/vn/conda-forge/av.svg?colorB=CCB39A\n[conda]: https://anaconda.org/conda-forge/av\n[docs-badge]: https://img.shields.io/badge/docs-on%20pyav.basswood--io.com-blue.svg\n[docs]: https://pyav.basswood-io.com\n[pypi-badge]: https://img.shields.io/pypi/v/av.svg?colorB=CCB39A\n[pypi]: https://pypi.org/project/av\n[discuss]: https://github.com/PyAV-Org/PyAV/discussions\n\n[github-tests-badge]: https://github.com/PyAV-Org/PyAV/workflows/tests/badge.svg\n[github-tests]: https://github.com/PyAV-Org/PyAV/actions?workflow=tests\n[github]: https://github.com/PyAV-Org/PyAV\n\n[ffmpeg]: https://ffmpeg.org/\n[conda-forge]: https://conda-forge.github.io/\n[conda-install]: https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyav-org%2Fpyav","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyav-org%2Fpyav","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyav-org%2Fpyav/lists"}