Name | av JSON |
Version |
15.1.0
JSON |
| download |
home_page | None |
Summary | Pythonic bindings for FFmpeg's libraries. |
upload_time | 2025-08-30 04:41:56 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
PyAV
====
PyAV 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.
---
[![GitHub Test Status][github-tests-badge]][github-tests] [![Documentation][docs-badge]][docs] [![Python Package Index][pypi-badge]][pypi] [![Conda Forge][conda-badge]][conda]
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][pypi] for Linux, MacOS and Windows linked against the latest stable version of ffmpeg. You can install these wheels by running:
```bash
pip install av
```
Another way of installing PyAV is via [conda-forge][conda-forge]:
```bash
conda install av -c conda-forge
```
See the [Conda install][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][pypi]:
> [!WARNING]
> You must be in a posix env, and have the correct version of ffmpeg installed on your system.
```bash
pip install av --no-binary av
```
Installing From Source
----------------------
Here's how to build PyAV from source. You must use [MSYS2](https://www.msys2.org/) when using Windows.
```bash
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][docs], [come chat with us][discuss], and good luck!
[conda-badge]: https://img.shields.io/conda/vn/conda-forge/av.svg?colorB=CCB39A
[conda]: https://anaconda.org/conda-forge/av
[docs-badge]: https://img.shields.io/badge/docs-on%20pyav.basswood--io.com-blue.svg
[docs]: https://pyav.basswood-io.com
[pypi-badge]: https://img.shields.io/pypi/v/av.svg?colorB=CCB39A
[pypi]: https://pypi.org/project/av
[discuss]: https://github.com/PyAV-Org/PyAV/discussions
[github-tests-badge]: https://github.com/PyAV-Org/PyAV/workflows/tests/badge.svg
[github-tests]: https://github.com/PyAV-Org/PyAV/actions?workflow=tests
[github]: https://github.com/PyAV-Org/PyAV
[ffmpeg]: https://ffmpeg.org/
[conda-forge]: https://conda-forge.github.io/
[conda-install]: https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html
Raw data
{
"_id": null,
"home_page": null,
"name": "av",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "WyattBlue <wyattblue@auto-editor.com>, Jeremy Lain\u00e9 <jeremy.laine@m4x.org>",
"download_url": "https://files.pythonhosted.org/packages/e9/c3/83e6e73d1592bc54436eae0bc61704ae0cff0c3cfbde7b58af9ed67ebb49/av-15.1.0.tar.gz",
"platform": null,
"description": "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> [!WARNING]\n> 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",
"bugtrack_url": null,
"license": null,
"summary": "Pythonic bindings for FFmpeg's libraries.",
"version": "15.1.0",
"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"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "3a6a91e3e68ae0d1b53b480ec69a96f2ae820fb007bc60e6b821741f31c7ba4e",
"md5": "f470cd03a4cc0a9add513fbe4dac05d8",
"sha256": "cf067b66cee2248220b29df33b60eb4840d9e7b9b75545d6b922f9c41d88c4ee"
},
"downloads": -1,
"filename": "av-15.1.0-cp310-cp310-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "f470cd03a4cc0a9add513fbe4dac05d8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 21781685,
"upload_time": "2025-08-30T04:39:13",
"upload_time_iso_8601": "2025-08-30T04:39:13.118738Z",
"url": "https://files.pythonhosted.org/packages/3a/6a/91e3e68ae0d1b53b480ec69a96f2ae820fb007bc60e6b821741f31c7ba4e/av-15.1.0-cp310-cp310-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc6dafa951b9cb615c3bc6d95c4eed280c6cefb52c006f4e15e79043626fab39",
"md5": "0bc36c588612579b26c010dc0bb3a6dc",
"sha256": "26426163d96fc3bde9a015ba4d60da09ef848d9284fe79b4ca5e60965a008fc5"
},
"downloads": -1,
"filename": "av-15.1.0-cp310-cp310-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "0bc36c588612579b26c010dc0bb3a6dc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 26962481,
"upload_time": "2025-08-30T04:39:16",
"upload_time_iso_8601": "2025-08-30T04:39:16.875517Z",
"url": "https://files.pythonhosted.org/packages/bc/6d/afa951b9cb615c3bc6d95c4eed280c6cefb52c006f4e15e79043626fab39/av-15.1.0-cp310-cp310-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3c420c384884235c42c439cef28cbd129e4624ad60229119bf3c6c6020805119",
"md5": "4f7e6e7a2032c9474b43a066b135a9b3",
"sha256": "92f524541ce74b8a12491d8934164a5c57e983da24826547c212f60123de400b"
},
"downloads": -1,
"filename": "av-15.1.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "4f7e6e7a2032c9474b43a066b135a9b3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 37571839,
"upload_time": "2025-08-30T04:39:20",
"upload_time_iso_8601": "2025-08-30T04:39:20.325210Z",
"url": "https://files.pythonhosted.org/packages/3c/42/0c384884235c42c439cef28cbd129e4624ad60229119bf3c6c6020805119/av-15.1.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25c05c967b0872fce1add80a8f50fa7ce11e3e3e5257c2b079263570bc854699",
"md5": "1cf1b68e4b77b1c9ca3519c96389df1d",
"sha256": "659f9d6145fb2c58e8b31907283b6ba876570f5dd6e7e890d74c09614c436c8e"
},
"downloads": -1,
"filename": "av-15.1.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "1cf1b68e4b77b1c9ca3519c96389df1d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 39070227,
"upload_time": "2025-08-30T04:39:24",
"upload_time_iso_8601": "2025-08-30T04:39:24.079718Z",
"url": "https://files.pythonhosted.org/packages/25/c0/5c967b0872fce1add80a8f50fa7ce11e3e3e5257c2b079263570bc854699/av-15.1.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e281e333056d49363c35a74b828ed5f87c96dfbcc1a506b49d79a31ac773b94d",
"md5": "e15b9efac610e57a369bb2aecea6723a",
"sha256": "07a8ae30c0cfc3132eff320a6b27d18a5e0dda36effd0ae28892888f4ee14729"
},
"downloads": -1,
"filename": "av-15.1.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e15b9efac610e57a369bb2aecea6723a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 39619362,
"upload_time": "2025-08-30T04:39:27",
"upload_time_iso_8601": "2025-08-30T04:39:27.700224Z",
"url": "https://files.pythonhosted.org/packages/e2/81/e333056d49363c35a74b828ed5f87c96dfbcc1a506b49d79a31ac773b94d/av-15.1.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d5ae50cc2af1bf68452cbfec8d1b2554c18f6d167c8ba6d7ad7707797dfd1541",
"md5": "b881bb392359d7460da55a02d2649897",
"sha256": "e33a76e38f03bb5de026b9f66ccf23dc01ddd2223221096992cb52ac22e62538"
},
"downloads": -1,
"filename": "av-15.1.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b881bb392359d7460da55a02d2649897",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 40371627,
"upload_time": "2025-08-30T04:39:31",
"upload_time_iso_8601": "2025-08-30T04:39:31.207033Z",
"url": "https://files.pythonhosted.org/packages/d5/ae/50cc2af1bf68452cbfec8d1b2554c18f6d167c8ba6d7ad7707797dfd1541/av-15.1.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50e6381edf1779106dd31c9ef1ac9842f643af4465b8a87cbc278d3eaa76229a",
"md5": "345cf67c5f99fa565e7b4cf723fa123f",
"sha256": "aa4bf12bdce20edc2a3b13a2776c474c5ab63e1817d53793714504476eeba82e"
},
"downloads": -1,
"filename": "av-15.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "345cf67c5f99fa565e7b4cf723fa123f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 31340369,
"upload_time": "2025-08-30T04:39:34",
"upload_time_iso_8601": "2025-08-30T04:39:34.774149Z",
"url": "https://files.pythonhosted.org/packages/50/e6/381edf1779106dd31c9ef1ac9842f643af4465b8a87cbc278d3eaa76229a/av-15.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47584e44cf6939be7aba96a4abce024e1be11ba7539ecac74d09369b8c03aa05",
"md5": "a677b77b1353625bb95080cf9db542fb",
"sha256": "b785948762a8d45fc58fc24a20251496829ace1817e9a7a508a348d6de2182c3"
},
"downloads": -1,
"filename": "av-15.1.0-cp311-cp311-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "a677b77b1353625bb95080cf9db542fb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 21767323,
"upload_time": "2025-08-30T04:39:37",
"upload_time_iso_8601": "2025-08-30T04:39:37.989978Z",
"url": "https://files.pythonhosted.org/packages/47/58/4e44cf6939be7aba96a4abce024e1be11ba7539ecac74d09369b8c03aa05/av-15.1.0-cp311-cp311-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9bf6a946544cdb49f6d892d2761b1d61a8bc6ce912fe57ba06769bdc640c0a7f",
"md5": "c5bf3ba87a4c8b22ca6c31d0a12059c4",
"sha256": "9c7131494a3a318612b4ee4db98fe5bc50eb705f6b6536127c7ab776c524fd8b"
},
"downloads": -1,
"filename": "av-15.1.0-cp311-cp311-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "c5bf3ba87a4c8b22ca6c31d0a12059c4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 26946268,
"upload_time": "2025-08-30T04:39:40",
"upload_time_iso_8601": "2025-08-30T04:39:40.601390Z",
"url": "https://files.pythonhosted.org/packages/9b/f6/a946544cdb49f6d892d2761b1d61a8bc6ce912fe57ba06769bdc640c0a7f/av-15.1.0-cp311-cp311-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "707cb33513c0af73d0033af59a98f035b521c5b93445a6af7e9efbf41a6e8383",
"md5": "d334d9328aeb7d13707436f0d7330483",
"sha256": "2b9623ae848625c59213b610c8665817924f913580c7c5c91e0dc18936deb00d"
},
"downloads": -1,
"filename": "av-15.1.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "d334d9328aeb7d13707436f0d7330483",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 38062118,
"upload_time": "2025-08-30T04:39:43",
"upload_time_iso_8601": "2025-08-30T04:39:43.928549Z",
"url": "https://files.pythonhosted.org/packages/70/7c/b33513c0af73d0033af59a98f035b521c5b93445a6af7e9efbf41a6e8383/av-15.1.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e9531b7fb34f9fea7c7389240364194f4f56ad2d460095038cc720f50a90bb3",
"md5": "61c50854c11d5534d3e2a3cd59756670",
"sha256": "c8ef597087db560514617143532b1fafc4825ebb2dda9a22418f548b113a0cc7"
},
"downloads": -1,
"filename": "av-15.1.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "61c50854c11d5534d3e2a3cd59756670",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 39571086,
"upload_time": "2025-08-30T04:39:47",
"upload_time_iso_8601": "2025-08-30T04:39:47.109349Z",
"url": "https://files.pythonhosted.org/packages/5e/95/31b7fb34f9fea7c7389240364194f4f56ad2d460095038cc720f50a90bb3/av-15.1.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7b07b0b45474a4e90c35c11d0032947d8b3c7386872957ce29c6f12add69a74",
"md5": "a67fbd626fdfc2ca837db315580764f3",
"sha256": "08eac47a90ebae1e2bd5935f400dd515166019bab4ff5b03c4625fa6ac3a0a5e"
},
"downloads": -1,
"filename": "av-15.1.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a67fbd626fdfc2ca837db315580764f3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 40112634,
"upload_time": "2025-08-30T04:39:50",
"upload_time_iso_8601": "2025-08-30T04:39:50.981748Z",
"url": "https://files.pythonhosted.org/packages/e7/b0/7b0b45474a4e90c35c11d0032947d8b3c7386872957ce29c6f12add69a74/av-15.1.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa04038b94bc9a1ee10a451c867d4a2fc91e845f83bfc2dae9df25893abcb57f",
"md5": "93c1f1c7f89097115e7e852467b08561",
"sha256": "d3f66ff200ea166e606cb3c5cb1bd2fc714effbec2e262a5d67ce60450c8234a"
},
"downloads": -1,
"filename": "av-15.1.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "93c1f1c7f89097115e7e852467b08561",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 40878695,
"upload_time": "2025-08-30T04:39:54",
"upload_time_iso_8601": "2025-08-30T04:39:54.493250Z",
"url": "https://files.pythonhosted.org/packages/aa/04/038b94bc9a1ee10a451c867d4a2fc91e845f83bfc2dae9df25893abcb57f/av-15.1.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d3d9f8f96c0deeaaf648485a3dbd1699b2f0580f2ce8a36cb616c0138ba7615",
"md5": "4e36a70cba301c125045d6bf100fc299",
"sha256": "57b99544d91121b8bea570e4ddf61700f679a6b677c1f37966bc1a22e1d4cd5c"
},
"downloads": -1,
"filename": "av-15.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "4e36a70cba301c125045d6bf100fc299",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 31335683,
"upload_time": "2025-08-30T04:39:57",
"upload_time_iso_8601": "2025-08-30T04:39:57.861685Z",
"url": "https://files.pythonhosted.org/packages/1d/3d/9f8f96c0deeaaf648485a3dbd1699b2f0580f2ce8a36cb616c0138ba7615/av-15.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d158de78b276d20db6ffcd4371283df771721a833ba525a3d57e753d00a9fe79",
"md5": "14530fd96feaafc5a58b1e25d6b7902c",
"sha256": "40c5df37f4c354ab8190c6fd68dab7881d112f527906f64ca73da4c252a58cee"
},
"downloads": -1,
"filename": "av-15.1.0-cp312-cp312-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "14530fd96feaafc5a58b1e25d6b7902c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 21760991,
"upload_time": "2025-08-30T04:40:00",
"upload_time_iso_8601": "2025-08-30T04:40:00.801511Z",
"url": "https://files.pythonhosted.org/packages/d1/58/de78b276d20db6ffcd4371283df771721a833ba525a3d57e753d00a9fe79/av-15.1.0-cp312-cp312-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56cc45f85775304ae60b66976360d82ba5b152ad3fd91f9267d5020a51e9a828",
"md5": "bd0ad9042c5a38bcb102b0d82c26d5a7",
"sha256": "af455ce65ada3d361f80c90c810d9bced4db5655ab9aa513024d6c71c5c476d5"
},
"downloads": -1,
"filename": "av-15.1.0-cp312-cp312-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "bd0ad9042c5a38bcb102b0d82c26d5a7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 26953097,
"upload_time": "2025-08-30T04:40:03",
"upload_time_iso_8601": "2025-08-30T04:40:03.998266Z",
"url": "https://files.pythonhosted.org/packages/56/cc/45f85775304ae60b66976360d82ba5b152ad3fd91f9267d5020a51e9a828/av-15.1.0-cp312-cp312-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3f82d781e5e71d02fc829487e775ccb1185e72f95340d05f2e84eb57a11e093",
"md5": "e847185d8496813fa2487573ecbf2016",
"sha256": "86226d2474c80c3393fa07a9c366106029ae500716098b72b3ec3f67205524c3"
},
"downloads": -1,
"filename": "av-15.1.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e847185d8496813fa2487573ecbf2016",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 38319710,
"upload_time": "2025-08-30T04:40:07",
"upload_time_iso_8601": "2025-08-30T04:40:07.701817Z",
"url": "https://files.pythonhosted.org/packages/f3/f8/2d781e5e71d02fc829487e775ccb1185e72f95340d05f2e84eb57a11e093/av-15.1.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ac1337737ef2193e83862ccacff23580c39de251da456a1bf0459e762cca273c",
"md5": "d8506d28b9de7ed5fcc147a4ac0ae49a",
"sha256": "11326f197e7001c4ca53a83b2dbc67fd39ddff8cdf62ce6be3b22d9f3f9338bd"
},
"downloads": -1,
"filename": "av-15.1.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "d8506d28b9de7ed5fcc147a4ac0ae49a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 39915519,
"upload_time": "2025-08-30T04:40:11",
"upload_time_iso_8601": "2025-08-30T04:40:11.066497Z",
"url": "https://files.pythonhosted.org/packages/ac/13/37737ef2193e83862ccacff23580c39de251da456a1bf0459e762cca273c/av-15.1.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "26e9e8032c7b8f2a4129a03f63f896544f8b7cf068e2db2950326fa2400d5c47",
"md5": "48c1737d504d6c0913ce877d58ba917f",
"sha256": "a631ea879cc553080ee62874f4284765c42ba08ee0279851a98a85e2ceb3cc8d"
},
"downloads": -1,
"filename": "av-15.1.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "48c1737d504d6c0913ce877d58ba917f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 40286166,
"upload_time": "2025-08-30T04:40:14",
"upload_time_iso_8601": "2025-08-30T04:40:14.561844Z",
"url": "https://files.pythonhosted.org/packages/26/e9/e8032c7b8f2a4129a03f63f896544f8b7cf068e2db2950326fa2400d5c47/av-15.1.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e223612c0fd809444d04b8387a2dfd942ccc77829507bd78a387ff65a9d98c24",
"md5": "aa9e48879c61753be5bf125314c30a2c",
"sha256": "8f383949b010c3e731c245f80351d19dc0c08f345e194fc46becb1cb279be3ff"
},
"downloads": -1,
"filename": "av-15.1.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "aa9e48879c61753be5bf125314c30a2c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 41150592,
"upload_time": "2025-08-30T04:40:17",
"upload_time_iso_8601": "2025-08-30T04:40:17.951379Z",
"url": "https://files.pythonhosted.org/packages/e2/23/612c0fd809444d04b8387a2dfd942ccc77829507bd78a387ff65a9d98c24/av-15.1.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15746f8e38a3b0aea5f28e72813672ff45b64615f2c69e6a4a558718c95edb9f",
"md5": "4e60323c24a4af47c80b201f3b54d7d9",
"sha256": "d5921aa45f4c1f8c1a8d8185eb347e02aa4c3071278a2e2dd56368d54433d643"
},
"downloads": -1,
"filename": "av-15.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "4e60323c24a4af47c80b201f3b54d7d9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 31336093,
"upload_time": "2025-08-30T04:40:21",
"upload_time_iso_8601": "2025-08-30T04:40:21.393159Z",
"url": "https://files.pythonhosted.org/packages/15/74/6f8e38a3b0aea5f28e72813672ff45b64615f2c69e6a4a558718c95edb9f/av-15.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ebc78b2ffa8235eeffc29aa4a8cc47b02e660cfec32f601f39a00975fb06d0e",
"md5": "74401c1e302dd7b0de59e8445c0e5e55",
"sha256": "2f77853c3119c59d1bff4214ccbe46e3133eccff85ed96adee51c68684443f4e"
},
"downloads": -1,
"filename": "av-15.1.0-cp313-cp313-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "74401c1e302dd7b0de59e8445c0e5e55",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 21726244,
"upload_time": "2025-08-30T04:40:24",
"upload_time_iso_8601": "2025-08-30T04:40:24.140703Z",
"url": "https://files.pythonhosted.org/packages/2e/bc/78b2ffa8235eeffc29aa4a8cc47b02e660cfec32f601f39a00975fb06d0e/av-15.1.0-cp313-cp313-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a9966d69453a2dce028e6e8ebea085d90e880aac03d3a3ab7d8ec16755ffd75",
"md5": "216502ddd3cd09567d59b57b5c3f7982",
"sha256": "c0bc4471c156a0a1c70a607502434f477bc8dfe085eef905e55b4b0d66bcd3a5"
},
"downloads": -1,
"filename": "av-15.1.0-cp313-cp313-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "216502ddd3cd09567d59b57b5c3f7982",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 26918663,
"upload_time": "2025-08-30T04:40:27",
"upload_time_iso_8601": "2025-08-30T04:40:27.557269Z",
"url": "https://files.pythonhosted.org/packages/1a/99/66d69453a2dce028e6e8ebea085d90e880aac03d3a3ab7d8ec16755ffd75/av-15.1.0-cp313-cp313-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa511a7dfbeda71f2772bc46d758af0e7fab1cc8388ce4bc7f24aecbc4bfd764",
"md5": "65ceaa7f483a2d790609b43a76c1ccd8",
"sha256": "37839d4fa1407f047af82560dfc0f94d8d6266071eff49e1cbe16c4483054621"
},
"downloads": -1,
"filename": "av-15.1.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "65ceaa7f483a2d790609b43a76c1ccd8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 38041408,
"upload_time": "2025-08-30T04:40:30",
"upload_time_iso_8601": "2025-08-30T04:40:30.811762Z",
"url": "https://files.pythonhosted.org/packages/fa/51/1a7dfbeda71f2772bc46d758af0e7fab1cc8388ce4bc7f24aecbc4bfd764/av-15.1.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d7972c4e0288ad4359b6064cb06ae79c2ff3a84ac73d27e91f2161b75fcd86fa",
"md5": "ac5a0869fec1f627c0a1113fb23c8499",
"sha256": "729179cd8622815e8b6f6854d13a806fe710576e08895c77e5e4ad254609de9a"
},
"downloads": -1,
"filename": "av-15.1.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "ac5a0869fec1f627c0a1113fb23c8499",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 39642563,
"upload_time": "2025-08-30T04:40:34",
"upload_time_iso_8601": "2025-08-30T04:40:34.617599Z",
"url": "https://files.pythonhosted.org/packages/d7/97/2c4e0288ad4359b6064cb06ae79c2ff3a84ac73d27e91f2161b75fcd86fa/av-15.1.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea942362502149e276d00957edabcc201a5f4d5109a8a7b4fd30793714a532f3",
"md5": "3a258794b6dcbbcb554773e6fbc8294a",
"sha256": "4abdf085bfa4eec318efccff567831b361ea56c045cc38366811552e3127c665"
},
"downloads": -1,
"filename": "av-15.1.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3a258794b6dcbbcb554773e6fbc8294a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 40022119,
"upload_time": "2025-08-30T04:40:37",
"upload_time_iso_8601": "2025-08-30T04:40:37.703704Z",
"url": "https://files.pythonhosted.org/packages/ea/94/2362502149e276d00957edabcc201a5f4d5109a8a7b4fd30793714a532f3/av-15.1.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df581a0ce1b3835d9728da0a7a54aeffaa0a2b1a88405eaed9322efd55212a54",
"md5": "aaabafe3fbbfbb909c771cb449a05609",
"sha256": "f985661644879e4520d28a995fcb2afeb951bc15a1d51412eb8e5f36da85b6fe"
},
"downloads": -1,
"filename": "av-15.1.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "aaabafe3fbbfbb909c771cb449a05609",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 40885158,
"upload_time": "2025-08-30T04:40:40",
"upload_time_iso_8601": "2025-08-30T04:40:40.952239Z",
"url": "https://files.pythonhosted.org/packages/df/58/1a0ce1b3835d9728da0a7a54aeffaa0a2b1a88405eaed9322efd55212a54/av-15.1.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30e6054bb64e424d90b77ed5fc6a7358e4013fb436154c998fc90a89a186313f",
"md5": "3b8830e3c9c55bf1554d542c3e72c05b",
"sha256": "7d7804a44c8048bb4b014a99353dd124663a12cd1d4613ba2bd3b457c3b1d539"
},
"downloads": -1,
"filename": "av-15.1.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "3b8830e3c9c55bf1554d542c3e72c05b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 31312256,
"upload_time": "2025-08-30T04:40:44",
"upload_time_iso_8601": "2025-08-30T04:40:44.224703Z",
"url": "https://files.pythonhosted.org/packages/30/e6/054bb64e424d90b77ed5fc6a7358e4013fb436154c998fc90a89a186313f/av-15.1.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f8b89eae6dca10d7d2b83c131025a31ccc750be78699ac0304439faa1d1df99",
"md5": "ac1d6160bf4568160b914505750f6652",
"sha256": "5dd73c6447947edcb82e5fecf96e1f146aeda0f169c7ad4c54df4d9f66f63fde"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "ac1d6160bf4568160b914505750f6652",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 21730645,
"upload_time": "2025-08-30T04:40:47",
"upload_time_iso_8601": "2025-08-30T04:40:47.259821Z",
"url": "https://files.pythonhosted.org/packages/6f/8b/89eae6dca10d7d2b83c131025a31ccc750be78699ac0304439faa1d1df99/av-15.1.0-cp314-cp314-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3f0abffaf69405ed68041524be12a1e294faf396971d6a0e70eb00e93687df7",
"md5": "fef588f77225a74093f9bb1969e25087",
"sha256": "a81cd515934a5d51290aa66b059b7ed29c4a212e704f3c5e99e32877ff1c312c"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "fef588f77225a74093f9bb1969e25087",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 26913753,
"upload_time": "2025-08-30T04:40:50",
"upload_time_iso_8601": "2025-08-30T04:40:50.445868Z",
"url": "https://files.pythonhosted.org/packages/a3/f0/abffaf69405ed68041524be12a1e294faf396971d6a0e70eb00e93687df7/av-15.1.0-cp314-cp314-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "379e7af078bcfc3cd340c981ac5d613c090ab007023d2ac13b05acd52f22f069",
"md5": "ddfa6671f98569cfc47187fe88529e1e",
"sha256": "57cc7a733a7e7d7a153682f35c9cf5d01e8269367b049c954779de36fc3d0b10"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "ddfa6671f98569cfc47187fe88529e1e",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 38027048,
"upload_time": "2025-08-30T04:40:54",
"upload_time_iso_8601": "2025-08-30T04:40:54.076388Z",
"url": "https://files.pythonhosted.org/packages/37/9e/7af078bcfc3cd340c981ac5d613c090ab007023d2ac13b05acd52f22f069/av-15.1.0-cp314-cp314-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02761f9dac11ad713e3619288993ea04e9c9cf4ec0f04e5ee81e83b8129dd8f3",
"md5": "a2b41f06a00b9fcf089f7b0e91c6e287",
"sha256": "a77b75bdb6899a64302ff923a5246e0747b3f0a3ecee7d61118db407a22c3f53"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "a2b41f06a00b9fcf089f7b0e91c6e287",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 39565396,
"upload_time": "2025-08-30T04:40:57",
"upload_time_iso_8601": "2025-08-30T04:40:57.840090Z",
"url": "https://files.pythonhosted.org/packages/02/76/1f9dac11ad713e3619288993ea04e9c9cf4ec0f04e5ee81e83b8129dd8f3/av-15.1.0-cp314-cp314-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b322188c46e2747247458ffc26b230c57dd28e61f65ff7b9e6223a411af5e98",
"md5": "48868340d56ef8ed3989af7cca1803c4",
"sha256": "d0a1154ce081f1720082a133cfe12356c59f62dad2b93a7a1844bf1dcd010d85"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "48868340d56ef8ed3989af7cca1803c4",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 40015050,
"upload_time": "2025-08-30T04:41:01",
"upload_time_iso_8601": "2025-08-30T04:41:01.091096Z",
"url": "https://files.pythonhosted.org/packages/8b/32/2188c46e2747247458ffc26b230c57dd28e61f65ff7b9e6223a411af5e98/av-15.1.0-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e41b57fbce9994580619d7574817ece0fe0e7b822cde2af57904549d0150b8d",
"md5": "f0ebd4f665e9f842262b946029857eb6",
"sha256": "8a7bf5a34dee15c86790414fa86a144e6d0dcc788bc83b565fdcbc080b4fbc90"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f0ebd4f665e9f842262b946029857eb6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 40821225,
"upload_time": "2025-08-30T04:41:04",
"upload_time_iso_8601": "2025-08-30T04:41:04.349795Z",
"url": "https://files.pythonhosted.org/packages/1e/41/b57fbce9994580619d7574817ece0fe0e7b822cde2af57904549d0150b8d/av-15.1.0-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80d808a681758a4e49adfda409a6a35eff533f42654c6a6cfa102bc5cae1a728",
"md5": "b2a67018aada82a544135bcf18bebdf2",
"sha256": "60666833d7e65ebcfc48034a072de74349edbb62c9aaa3e6722fef31ca028eb6"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314t-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "b2a67018aada82a544135bcf18bebdf2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 21828343,
"upload_time": "2025-08-30T04:41:10",
"upload_time_iso_8601": "2025-08-30T04:41:10.810202Z",
"url": "https://files.pythonhosted.org/packages/80/d8/08a681758a4e49adfda409a6a35eff533f42654c6a6cfa102bc5cae1a728/av-15.1.0-cp314-cp314t-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a5229bec3fe68669b21f7d1ab5d94e21f597b8dfd37f50a3e3c9af6a8da925c",
"md5": "ff490614f1bd3ddc986418a70b609775",
"sha256": "53fbdae45aa2a49a22e864ff4f4017416ef62c060a172085d3247ba0a101104e"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314t-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "ff490614f1bd3ddc986418a70b609775",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 27001666,
"upload_time": "2025-08-30T04:41:13",
"upload_time_iso_8601": "2025-08-30T04:41:13.822775Z",
"url": "https://files.pythonhosted.org/packages/4a/52/29bec3fe68669b21f7d1ab5d94e21f597b8dfd37f50a3e3c9af6a8da925c/av-15.1.0-cp314-cp314t-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d542c1d1faced66d708f5df328e800997cb47f90b500a214130c3a0f2ad601e",
"md5": "f427c53aeedb198305f7f6cca83fd5a0",
"sha256": "e6c51061667983dc801502aff9140bbc4f0e0d97f879586f17fb2f9a7e49c381"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "f427c53aeedb198305f7f6cca83fd5a0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 39496753,
"upload_time": "2025-08-30T04:41:16",
"upload_time_iso_8601": "2025-08-30T04:41:16.759377Z",
"url": "https://files.pythonhosted.org/packages/9d/54/2c1d1faced66d708f5df328e800997cb47f90b500a214130c3a0f2ad601e/av-15.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c37606ded5e52c4dcc2d9b5184c6da8de5ea77bd7ecb79a59a2b9700f1984949",
"md5": "f3347e3477d23ef9a254a24cb17e71e5",
"sha256": "2f80ec387f04aa34868662b11018b5f09654ae1530a61e24e92a142a24b10b62"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "f3347e3477d23ef9a254a24cb17e71e5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 40784729,
"upload_time": "2025-08-30T04:41:20",
"upload_time_iso_8601": "2025-08-30T04:41:20.491491Z",
"url": "https://files.pythonhosted.org/packages/c3/76/06ded5e52c4dcc2d9b5184c6da8de5ea77bd7ecb79a59a2b9700f1984949/av-15.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52ef797b76f3b39c99a96e387f501bbc07dca340b27d3dda12862fe694066b63",
"md5": "e842dfecb1fd36e20257bef89e0d6cdc",
"sha256": "4975e03177d37d8165c99c8d494175675ba8acb72458fb5d7e43f746a53e0374"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e842dfecb1fd36e20257bef89e0d6cdc",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 41284953,
"upload_time": "2025-08-30T04:41:23",
"upload_time_iso_8601": "2025-08-30T04:41:23.949803Z",
"url": "https://files.pythonhosted.org/packages/52/ef/797b76f3b39c99a96e387f501bbc07dca340b27d3dda12862fe694066b63/av-15.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3147e4656f00e62fd059ea5a40b492dea784f5aecfe1dfac10c0d7a0664ce200",
"md5": "63330ffcaad6a465f85d9f29210cba27",
"sha256": "8f78f3dad11780b4cdd024cdb92ce43cb170929297c00f2f4555c2b103f51e55"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "63330ffcaad6a465f85d9f29210cba27",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 41985340,
"upload_time": "2025-08-30T04:41:27",
"upload_time_iso_8601": "2025-08-30T04:41:27.561350Z",
"url": "https://files.pythonhosted.org/packages/31/47/e4656f00e62fd059ea5a40b492dea784f5aecfe1dfac10c0d7a0664ce200/av-15.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1c915bb4fd7a1f39d70db35af2b9c20a0ae19e4220eb58a8b8446e903b98d72",
"md5": "fa51eefe860af1f791d71fd4738d60ca",
"sha256": "9a20c5eba3ec49c2f4b281797021923fc68a86aeb66c5cda4fd0252fa8004951"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "fa51eefe860af1f791d71fd4738d60ca",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 31487337,
"upload_time": "2025-08-30T04:41:30",
"upload_time_iso_8601": "2025-08-30T04:41:30.591579Z",
"url": "https://files.pythonhosted.org/packages/b1/c9/15bb4fd7a1f39d70db35af2b9c20a0ae19e4220eb58a8b8446e903b98d72/av-15.1.0-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b136e85cd1f0d3369c6764ad422882895d082f7ececb66d3df8aeae3234ef7a6",
"md5": "b45dc95973da56e71bdaa01c33444749",
"sha256": "e30c9a6fd9734784941384a2e25fad3c22881a7682f378914676aa7e795acdb7"
},
"downloads": -1,
"filename": "av-15.1.0-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "b45dc95973da56e71bdaa01c33444749",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 31311750,
"upload_time": "2025-08-30T04:41:07",
"upload_time_iso_8601": "2025-08-30T04:41:07.744771Z",
"url": "https://files.pythonhosted.org/packages/b1/36/e85cd1f0d3369c6764ad422882895d082f7ececb66d3df8aeae3234ef7a6/av-15.1.0-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e0ec7c9f14b5c19a8230e0538c2940cef6da2be08b5d05ce884a68a30f4573d",
"md5": "1e41f2fc00020b34577100e3b99f7f05",
"sha256": "315915f6fef9f9f4935153aed8a81df56690da20f4426ee5b9fa55b4dae4bc0b"
},
"downloads": -1,
"filename": "av-15.1.0-cp39-cp39-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "1e41f2fc00020b34577100e3b99f7f05",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 21795132,
"upload_time": "2025-08-30T04:41:33",
"upload_time_iso_8601": "2025-08-30T04:41:33.370203Z",
"url": "https://files.pythonhosted.org/packages/4e/0e/c7c9f14b5c19a8230e0538c2940cef6da2be08b5d05ce884a68a30f4573d/av-15.1.0-cp39-cp39-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0df8ab8d800eefcf3588f883b76dc0ba39c6f7bb6792d5d660a7d416626c909c",
"md5": "675b3316aa9ccf9565e0df40aba21820",
"sha256": "4a2a52a56cd8c6a8f0f005d29c3a0ebc1822d31b0d0f39990c4c8e3a69d6c96e"
},
"downloads": -1,
"filename": "av-15.1.0-cp39-cp39-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "675b3316aa9ccf9565e0df40aba21820",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 26976225,
"upload_time": "2025-08-30T04:41:36",
"upload_time_iso_8601": "2025-08-30T04:41:36.472212Z",
"url": "https://files.pythonhosted.org/packages/0d/f8/ab8d800eefcf3588f883b76dc0ba39c6f7bb6792d5d660a7d416626c909c/av-15.1.0-cp39-cp39-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f09878ec186c3c306bf747351a8ad736d19a32e7a95fdcd6188bcbd1c1b2679",
"md5": "9dc9974eb78a65df83168922ae36e887",
"sha256": "406fc29103865f17de0f684c5fb2e3d2e43e15c1fa65fcc488f65d20c7a7c7f3"
},
"downloads": -1,
"filename": "av-15.1.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "9dc9974eb78a65df83168922ae36e887",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 37575927,
"upload_time": "2025-08-30T04:41:39",
"upload_time_iso_8601": "2025-08-30T04:41:39.597443Z",
"url": "https://files.pythonhosted.org/packages/9f/09/878ec186c3c306bf747351a8ad736d19a32e7a95fdcd6188bcbd1c1b2679/av-15.1.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05dabcc82726fca6554420b23c1c04449eb6545737e78bb908a8cdf1cdb1eb68",
"md5": "0e3b34a595e9d5f02a2ddaf48b82a23a",
"sha256": "fe07cf7de162acc09d021e02154b1f760bca742c62609ec0ae586a6a1e0579ac"
},
"downloads": -1,
"filename": "av-15.1.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0e3b34a595e9d5f02a2ddaf48b82a23a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 39078913,
"upload_time": "2025-08-30T04:41:43",
"upload_time_iso_8601": "2025-08-30T04:41:43.025710Z",
"url": "https://files.pythonhosted.org/packages/05/da/bcc82726fca6554420b23c1c04449eb6545737e78bb908a8cdf1cdb1eb68/av-15.1.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "33e00638db8e824297d1c6d3b3a1a3b28788d967eef9c357eee0f3f777894605",
"md5": "6cdad4264f22a78ac8a5a7813d96d7c2",
"sha256": "9a0c1840959e1742dcd7fa4f7e9b80eea298049542f233e98d6d7a9441ed292c"
},
"downloads": -1,
"filename": "av-15.1.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6cdad4264f22a78ac8a5a7813d96d7c2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 39622862,
"upload_time": "2025-08-30T04:41:46",
"upload_time_iso_8601": "2025-08-30T04:41:46.722997Z",
"url": "https://files.pythonhosted.org/packages/33/e0/0638db8e824297d1c6d3b3a1a3b28788d967eef9c357eee0f3f777894605/av-15.1.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9622091a6076a80cf71c4c6f799c50ca10cbda1602b598f3f8c95f7be38aeb99",
"md5": "e8999191fd3eb8b6dfce0af572ecbcb6",
"sha256": "46875a57562a72d9b11b4b222628eaf7e5b1a723c4225c869c66d5704634c1d1"
},
"downloads": -1,
"filename": "av-15.1.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e8999191fd3eb8b6dfce0af572ecbcb6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 40381672,
"upload_time": "2025-08-30T04:41:50",
"upload_time_iso_8601": "2025-08-30T04:41:50.150335Z",
"url": "https://files.pythonhosted.org/packages/96/22/091a6076a80cf71c4c6f799c50ca10cbda1602b598f3f8c95f7be38aeb99/av-15.1.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f72164bbe36d68f6908fc6cab1f4be85331bcedae6ff6eea2dc56663295efbad",
"md5": "cc84ddd133b416076b5536810927b722",
"sha256": "5f895315ecfe5821a4a3a178cbbe7f62e6a73ae1f726138bef5bb153b2885ed8"
},
"downloads": -1,
"filename": "av-15.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "cc84ddd133b416076b5536810927b722",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 31353295,
"upload_time": "2025-08-30T04:41:53",
"upload_time_iso_8601": "2025-08-30T04:41:53.246451Z",
"url": "https://files.pythonhosted.org/packages/f7/21/64bbe36d68f6908fc6cab1f4be85331bcedae6ff6eea2dc56663295efbad/av-15.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9c383e6e73d1592bc54436eae0bc61704ae0cff0c3cfbde7b58af9ed67ebb49",
"md5": "88d9f44bae3cb1c2548a1613cef6385f",
"sha256": "39cda2dc810e11c1938f8cb5759c41d6b630550236b3365790e67a313660ec85"
},
"downloads": -1,
"filename": "av-15.1.0.tar.gz",
"has_sig": false,
"md5_digest": "88d9f44bae3cb1c2548a1613cef6385f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 3774192,
"upload_time": "2025-08-30T04:41:56",
"upload_time_iso_8601": "2025-08-30T04:41:56.076884Z",
"url": "https://files.pythonhosted.org/packages/e9/c3/83e6e73d1592bc54436eae0bc61704ae0cff0c3cfbde7b58af9ed67ebb49/av-15.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-30 04:41:56",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "PyAV-Org",
"github_project": "PyAV",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "av"
}