Name | av JSON |
Version |
13.1.0
JSON |
| download |
home_page | https://github.com/PyAV-Org/PyAV |
Summary | Pythonic bindings for FFmpeg's libraries. |
upload_time | 2024-10-06 04:54:57 |
maintainer | None |
docs_url | None |
author | Mike Boers |
requires_python | >=3.9 |
license | BSD |
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
------------
Due to the complexity of the dependencies, PyAV is not always the easiest Python package to install from source. Since release 8.0.0 binary wheels are provided on [PyPI][pypi] for Linux, Mac and Windows linked against a modern FFmpeg. You can install these wheels by running:
```bash
pip install av
```
If you want to use your existing FFmpeg, the source version of PyAV is on [PyPI][pypi] too:
```bash
pip install av --no-binary av
```
Installing from source is not supported on Windows.
Alternative installation methods
--------------------------------
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.
And if you want to build from the absolute source (POSIX only):
```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": "https://github.com/PyAV-Org/PyAV",
"name": "av",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": "Mike Boers",
"author_email": "pyav@mikeboers.com",
"download_url": "https://files.pythonhosted.org/packages/0c/9d/486d31e76784cc0ad943f420c5e05867263b32b37e2f4b0f7f22fdc1ca3a/av-13.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\nDue to the complexity of the dependencies, PyAV is not always the easiest Python package to install from source. Since release 8.0.0 binary wheels are provided on [PyPI][pypi] for Linux, Mac and Windows linked against a modern FFmpeg. You can install these wheels by running:\n\n```bash\npip install av\n```\n\nIf you want to use your existing FFmpeg, the source version of PyAV is on [PyPI][pypi] too:\n\n```bash\npip install av --no-binary av\n```\n\nInstalling from source is not supported on Windows.\n\nAlternative installation methods\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\nAnd if you want to build from the absolute source (POSIX only):\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": "BSD",
"summary": "Pythonic bindings for FFmpeg's libraries.",
"version": "13.1.0",
"project_urls": {
"Bug Reports": "https://github.com/PyAV-Org/PyAV/issues",
"Documentation": "https://pyav.basswood-io.com",
"Download": "https://pypi.org/project/av",
"Homepage": "https://github.com/PyAV-Org/PyAV"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "dbd61c4a8056a88e006681ac6a3d5ac6082f0a48e52bd565bfd350bfc7c6a37d",
"md5": "be5373fb460a4a583f4ec8843dc23f4d",
"sha256": "a2af44fae6d16c3a40dd1c85bda41b449be08a2c172d8f44fb63395ccf6e6fb4"
},
"downloads": -1,
"filename": "av-13.1.0-cp310-cp310-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "be5373fb460a4a583f4ec8843dc23f4d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 24260057,
"upload_time": "2024-10-06T04:52:26",
"upload_time_iso_8601": "2024-10-06T04:52:26.417990Z",
"url": "https://files.pythonhosted.org/packages/db/d6/1c4a8056a88e006681ac6a3d5ac6082f0a48e52bd565bfd350bfc7c6a37d/av-13.1.0-cp310-cp310-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "23becf89545117172d75a0c48066e6f368403237df623b2e3e93590fdeaef8bf",
"md5": "46b91811ac2e20a4504f6887d18d40ec",
"sha256": "0fea71fe06fd0dfe90a089200eb6468034797f860a321fa2d62e07d619c74749"
},
"downloads": -1,
"filename": "av-13.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "46b91811ac2e20a4504f6887d18d40ec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 19475039,
"upload_time": "2024-10-06T04:52:29",
"upload_time_iso_8601": "2024-10-06T04:52:29.615285Z",
"url": "https://files.pythonhosted.org/packages/23/be/cf89545117172d75a0c48066e6f368403237df623b2e3e93590fdeaef8bf/av-13.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4bd08e261547f7763f320a4f5f68e139fea5f31814fddfe5503c8372123ebb8b",
"md5": "04ec80c8f849099610d22d8bcd12d2e5",
"sha256": "756997810dcca11811b598d209561cabd2071e5b472b867c295bb3e7022eecde"
},
"downloads": -1,
"filename": "av-13.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "04ec80c8f849099610d22d8bcd12d2e5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 31289005,
"upload_time": "2024-10-06T04:52:33",
"upload_time_iso_8601": "2024-10-06T04:52:33.042447Z",
"url": "https://files.pythonhosted.org/packages/4b/d0/8e261547f7763f320a4f5f68e139fea5f31814fddfe5503c8372123ebb8b/av-13.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "82a300cacfe80ebbe0664876dd26558fb23b65d034ffd2ce0ddb12f1c746e7cb",
"md5": "555daa38175c8610ca36dca6d12e5e83",
"sha256": "7f432102edaec4ee90087a675acf486bff0c81b47d98b85eb3218afe84575b60"
},
"downloads": -1,
"filename": "av-13.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "555daa38175c8610ca36dca6d12e5e83",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 30705668,
"upload_time": "2024-10-06T04:52:36",
"upload_time_iso_8601": "2024-10-06T04:52:36.630057Z",
"url": "https://files.pythonhosted.org/packages/82/a3/00cacfe80ebbe0664876dd26558fb23b65d034ffd2ce0ddb12f1c746e7cb/av-13.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d737faa98dca1a8f6c2e3f4ad3a935037872aff49a679b76918c5258cf5a1c70",
"md5": "c5d3e226518de832ee43f3f7d90829b3",
"sha256": "1d568c4d7a36df52c0774d52e6d730148775ead16daed81c10dafc2569b5a38d"
},
"downloads": -1,
"filename": "av-13.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c5d3e226518de832ee43f3f7d90829b3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 33122108,
"upload_time": "2024-10-06T04:52:40",
"upload_time_iso_8601": "2024-10-06T04:52:40.296129Z",
"url": "https://files.pythonhosted.org/packages/d7/37/faa98dca1a8f6c2e3f4ad3a935037872aff49a679b76918c5258cf5a1c70/av-13.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2581c3a842477b558e23c7249f81cf723764c193636b6523267c2c02321da6b0",
"md5": "610bc2ce3b8a96bce3b2e0d300800a6e",
"sha256": "aa6f76e7c5e77bc5f99a27ada29f78c64fd4e0d42da2c4d203badc650bc0a686"
},
"downloads": -1,
"filename": "av-13.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "610bc2ce3b8a96bce3b2e0d300800a6e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 25775920,
"upload_time": "2024-10-06T04:52:44",
"upload_time_iso_8601": "2024-10-06T04:52:44.067348Z",
"url": "https://files.pythonhosted.org/packages/25/81/c3a842477b558e23c7249f81cf723764c193636b6523267c2c02321da6b0/av-13.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3954c4227080c9700384db90072ace70d89b6a288b3748bd2ec0e32580a49e7f",
"md5": "c93bd1df3059f193d359b05feac62d4a",
"sha256": "867385e6701464a5c95903e24d2e0df1c7e0dbf211ed91d0ce639cd687373e10"
},
"downloads": -1,
"filename": "av-13.1.0-cp311-cp311-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "c93bd1df3059f193d359b05feac62d4a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 24255112,
"upload_time": "2024-10-06T04:52:48",
"upload_time_iso_8601": "2024-10-06T04:52:48.490784Z",
"url": "https://files.pythonhosted.org/packages/39/54/c4227080c9700384db90072ace70d89b6a288b3748bd2ec0e32580a49e7f/av-13.1.0-cp311-cp311-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "324aeb9348231655ca99b200b380f4edbceff7358c927a285badcc84b18fb1c9",
"md5": "1b7044fde7ae22f0e985cad05b5e89c1",
"sha256": "cb7a3f319401a46b0017771268ff4928501e77cf00b1a2aa0721e20b2fd1146e"
},
"downloads": -1,
"filename": "av-13.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1b7044fde7ae22f0e985cad05b5e89c1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 19467930,
"upload_time": "2024-10-06T04:52:52",
"upload_time_iso_8601": "2024-10-06T04:52:52.118589Z",
"url": "https://files.pythonhosted.org/packages/32/4a/eb9348231655ca99b200b380f4edbceff7358c927a285badcc84b18fb1c9/av-13.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14c748c80252bdbc3a75a54dd205a7fab8f613914009b9e5416202757208e040",
"md5": "fa350f2ec935f05d7fb40919da26487a",
"sha256": "ad904f860147bceaca65b0d3174a8153f35c570d465161d210f1879970b15559"
},
"downloads": -1,
"filename": "av-13.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fa350f2ec935f05d7fb40919da26487a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 32207671,
"upload_time": "2024-10-06T04:52:55",
"upload_time_iso_8601": "2024-10-06T04:52:55.820022Z",
"url": "https://files.pythonhosted.org/packages/14/c7/48c80252bdbc3a75a54dd205a7fab8f613914009b9e5416202757208e040/av-13.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9663332c7fa8c43b65680a94f279ea3e832b5500de3a1392bac6112881e984b",
"md5": "4a003d0ca71b21c5e4c159d8f97df7be",
"sha256": "a906e017b29d0eb80d9ccf7a98d19268122da792dbb68eb741cfebba156e6aed"
},
"downloads": -1,
"filename": "av-13.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4a003d0ca71b21c5e4c159d8f97df7be",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 31520911,
"upload_time": "2024-10-06T04:52:59",
"upload_time_iso_8601": "2024-10-06T04:52:59.231768Z",
"url": "https://files.pythonhosted.org/packages/f9/66/3332c7fa8c43b65680a94f279ea3e832b5500de3a1392bac6112881e984b/av-13.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5bb2e03acb9b27591d97f700a3a6c27cfd1bc53fa148177747eda8a70cca1e9",
"md5": "da7b82fcf54558b4f82ec8025da656a0",
"sha256": "5ce894d7847897da7be63277a0875bd93c51327134ac226c67978de014c7979f"
},
"downloads": -1,
"filename": "av-13.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "da7b82fcf54558b4f82ec8025da656a0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 34048399,
"upload_time": "2024-10-06T04:53:03",
"upload_time_iso_8601": "2024-10-06T04:53:03.934954Z",
"url": "https://files.pythonhosted.org/packages/e5/bb/2e03acb9b27591d97f700a3a6c27cfd1bc53fa148177747eda8a70cca1e9/av-13.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8544527aa3b65947d42cfe829326026edf0cd1a8c459390076034be275616c36",
"md5": "730c1477c56e656ac0d535f80d6d5786",
"sha256": "384bcdb5fc3238a263a5a25cc9efc690859fa4148cc4b07e00fae927178db22a"
},
"downloads": -1,
"filename": "av-13.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "730c1477c56e656ac0d535f80d6d5786",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 25779569,
"upload_time": "2024-10-06T04:53:07",
"upload_time_iso_8601": "2024-10-06T04:53:07.582196Z",
"url": "https://files.pythonhosted.org/packages/85/44/527aa3b65947d42cfe829326026edf0cd1a8c459390076034be275616c36/av-13.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9baa4bdd8ce59173574fc6e0c282c71ee6f96fca82643d97bf172bc4cb5a5674",
"md5": "78b3e8effad9520ef744b277bdcccf9a",
"sha256": "261dbc3f4b55f4f8f3375b10b2258fca7f2ab7a6365c01bc65e77a0d5327a195"
},
"downloads": -1,
"filename": "av-13.1.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "78b3e8effad9520ef744b277bdcccf9a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 24268674,
"upload_time": "2024-10-06T04:53:11",
"upload_time_iso_8601": "2024-10-06T04:53:11.251175Z",
"url": "https://files.pythonhosted.org/packages/9b/aa/4bdd8ce59173574fc6e0c282c71ee6f96fca82643d97bf172bc4cb5a5674/av-13.1.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17b4b267dd5bad99eed49ec6731827c6bcb5ab03864bf732a7ebb81e3df79911",
"md5": "e494b14fbf885e37a6dc3e7114ae83d9",
"sha256": "83d259ef86b9054eb914bc7c6a7f6092a6d75cb939295e70ee979cfd92a67b99"
},
"downloads": -1,
"filename": "av-13.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e494b14fbf885e37a6dc3e7114ae83d9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 19475617,
"upload_time": "2024-10-06T04:53:13",
"upload_time_iso_8601": "2024-10-06T04:53:13.832881Z",
"url": "https://files.pythonhosted.org/packages/17/b4/b267dd5bad99eed49ec6731827c6bcb5ab03864bf732a7ebb81e3df79911/av-13.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68324209e51f54d7b54a1feb576d309c671ed1ff437b54fcc4ec68c239199e0a",
"md5": "bfdbcea193e413aa3377e8c885f43e9a",
"sha256": "f3b4d3ca159eceab97e3c0fb08fe756520fb95508417f76e48198fda2a5b0806"
},
"downloads": -1,
"filename": "av-13.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bfdbcea193e413aa3377e8c885f43e9a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 32468873,
"upload_time": "2024-10-06T04:53:17",
"upload_time_iso_8601": "2024-10-06T04:53:17.639967Z",
"url": "https://files.pythonhosted.org/packages/68/32/4209e51f54d7b54a1feb576d309c671ed1ff437b54fcc4ec68c239199e0a/av-13.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b6d8c174da5f06b24f3c9e36f91fd02a7411c39da9ce792c17964260d4be675e",
"md5": "dfaa246b807fa8248671c1d2b48c922d",
"sha256": "40e8f757e373b73a2dc4640852a00cce4a4a92ef19b2e642a96d6994cd1fffbf"
},
"downloads": -1,
"filename": "av-13.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "dfaa246b807fa8248671c1d2b48c922d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 31818484,
"upload_time": "2024-10-06T04:53:21",
"upload_time_iso_8601": "2024-10-06T04:53:21.509677Z",
"url": "https://files.pythonhosted.org/packages/b6/d8/c174da5f06b24f3c9e36f91fd02a7411c39da9ce792c17964260d4be675e/av-13.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f220dd8d1d5cad415772bb707d16aea8b81cf75d340d11d3668eea43468c730",
"md5": "b7a66f4365c6d2e7227c51cf22304fba",
"sha256": "d8aaec2c0bfd024359db3821d679009d4e637e1bee0321d20f61c54ed6b20f41"
},
"downloads": -1,
"filename": "av-13.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b7a66f4365c6d2e7227c51cf22304fba",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 34398652,
"upload_time": "2024-10-06T04:53:25",
"upload_time_iso_8601": "2024-10-06T04:53:25.798099Z",
"url": "https://files.pythonhosted.org/packages/7f/22/0dd8d1d5cad415772bb707d16aea8b81cf75d340d11d3668eea43468c730/av-13.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bff48fa68888b8d5bae36d915556ff18f9e5fdc6b5ff5ae23dc4904c9713168",
"md5": "30d37e91096eeed2ceb43065c2a9c8fb",
"sha256": "5ea0deab0e6a739cb742fba2a3983d8102f7516a3cdf3c46669f3cac0ed1f351"
},
"downloads": -1,
"filename": "av-13.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "30d37e91096eeed2ceb43065c2a9c8fb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 25781343,
"upload_time": "2024-10-06T04:53:29",
"upload_time_iso_8601": "2024-10-06T04:53:29.577318Z",
"url": "https://files.pythonhosted.org/packages/7b/ff/48fa68888b8d5bae36d915556ff18f9e5fdc6b5ff5ae23dc4904c9713168/av-13.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "826ecdce12e534570df37d3fdcb3a74851d39e9ab79d388f3174dea9785a011a",
"md5": "0c0c4e0d201440990c3bfc9ffc7164ba",
"sha256": "47642ebaebfe20519b2391bd5b7c38b596efcd052bfd09c8d33058f94ddd0fd6"
},
"downloads": -1,
"filename": "av-13.1.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "0c0c4e0d201440990c3bfc9ffc7164ba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 24229340,
"upload_time": "2024-10-06T04:53:33",
"upload_time_iso_8601": "2024-10-06T04:53:33.250995Z",
"url": "https://files.pythonhosted.org/packages/82/6e/cdce12e534570df37d3fdcb3a74851d39e9ab79d388f3174dea9785a011a/av-13.1.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c885359aeada9ea509426f2db63b6531833824a1b02470667b103479ddea7ae",
"md5": "82964bde5a2e4b9a899bb946a431cc9d",
"sha256": "2f079c2daa3ae06557b3f6e9bed4fb9c876e8012175bec645ccd007199a302db"
},
"downloads": -1,
"filename": "av-13.1.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "82964bde5a2e4b9a899bb946a431cc9d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19436445,
"upload_time": "2024-10-06T04:53:36",
"upload_time_iso_8601": "2024-10-06T04:53:36.573466Z",
"url": "https://files.pythonhosted.org/packages/7c/88/5359aeada9ea509426f2db63b6531833824a1b02470667b103479ddea7ae/av-13.1.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4d464995e5b800476c86dae4ea1444a0eac44e2c4985fac6401b08401e2df11",
"md5": "76f1098d2d052e2fd1231f547c842a0f",
"sha256": "1f0de8252deeeb1887637e88d4d9d18514e5cfe276bdb9e6ca8e9eef89d1667a"
},
"downloads": -1,
"filename": "av-13.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "76f1098d2d052e2fd1231f547c842a0f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 32120549,
"upload_time": "2024-10-06T04:53:39",
"upload_time_iso_8601": "2024-10-06T04:53:39.752373Z",
"url": "https://files.pythonhosted.org/packages/b4/d4/64995e5b800476c86dae4ea1444a0eac44e2c4985fac6401b08401e2df11/av-13.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68769910694cf87d2d308d851f5b2b5c5b20f7f55411f596e2c158fb13bf84a3",
"md5": "c4cbd7b4792e7ab65f93021a112cf037",
"sha256": "9ad0024f4def11b0cedfeee478fa6c6fd7ed3955e13387e0f27261fdda6121b4"
},
"downloads": -1,
"filename": "av-13.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c4cbd7b4792e7ab65f93021a112cf037",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 31495305,
"upload_time": "2024-10-06T04:53:43",
"upload_time_iso_8601": "2024-10-06T04:53:43.661005Z",
"url": "https://files.pythonhosted.org/packages/68/76/9910694cf87d2d308d851f5b2b5c5b20f7f55411f596e2c158fb13bf84a3/av-13.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6aa8cd92de947b9595a0eb2c64e6f7ba295aac2687972050ae092173c2f6ea0c",
"md5": "c089673b39d6cad58ac77d8bb07c6848",
"sha256": "cb88e2590eaed45233eb117f1dfab1a43ed9a997b2c46da9f08468dd00f14895"
},
"downloads": -1,
"filename": "av-13.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c089673b39d6cad58ac77d8bb07c6848",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 34065325,
"upload_time": "2024-10-06T04:53:47",
"upload_time_iso_8601": "2024-10-06T04:53:47.250779Z",
"url": "https://files.pythonhosted.org/packages/6a/a8/cd92de947b9595a0eb2c64e6f7ba295aac2687972050ae092173c2f6ea0c/av-13.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9dd09869fcbd66422df2033d4b78a663e3c64aa6fe7eb9189c811d60f69d9871",
"md5": "7da130ede0f85f8baba885754693245e",
"sha256": "c927e4fa4f6aeed4340b3e3b16b237d7cb743e5c1a55b92307407590ca4112aa"
},
"downloads": -1,
"filename": "av-13.1.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "7da130ede0f85f8baba885754693245e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 25754728,
"upload_time": "2024-10-06T04:53:50",
"upload_time_iso_8601": "2024-10-06T04:53:50.603693Z",
"url": "https://files.pythonhosted.org/packages/9d/d0/9869fcbd66422df2033d4b78a663e3c64aa6fe7eb9189c811d60f69d9871/av-13.1.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c70c472d0448442bc915f69df16034ac98986263b25b8122a7bf28be79c9faf5",
"md5": "c5457850a5b9bbdec0caa26b5903c274",
"sha256": "fa398f0e0579bdeca4f0c31eb46e88c29562988e135e44972f73bb7525d1454e"
},
"downloads": -1,
"filename": "av-13.1.0-cp39-cp39-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "c5457850a5b9bbdec0caa26b5903c274",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 24289660,
"upload_time": "2024-10-06T04:53:54",
"upload_time_iso_8601": "2024-10-06T04:53:54.237108Z",
"url": "https://files.pythonhosted.org/packages/c7/0c/472d0448442bc915f69df16034ac98986263b25b8122a7bf28be79c9faf5/av-13.1.0-cp39-cp39-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5d42f3c94c9a7461012158409f786e2281cede49b83ee3c6224287abdfa42b9",
"md5": "ede6ccc1247da6b579d337bd07678366",
"sha256": "cd38601a0e83061af90106e5a312649cd04b1f0bba508f3895ac8dc7930bcf68"
},
"downloads": -1,
"filename": "av-13.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ede6ccc1247da6b579d337bd07678366",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 19502324,
"upload_time": "2024-10-06T04:53:57",
"upload_time_iso_8601": "2024-10-06T04:53:57.182745Z",
"url": "https://files.pythonhosted.org/packages/f5/d4/2f3c94c9a7461012158409f786e2281cede49b83ee3c6224287abdfa42b9/av-13.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36255d6e57634218fb30d078209d33289c53ee1f21de4b547fe4014994a2076c",
"md5": "9aad686de7e14f26a9bf000b0122785c",
"sha256": "1a18b67c5b4ad725c5cd4d0d6cd825d91e39f50654e4148cb179a02913b6bd42"
},
"downloads": -1,
"filename": "av-13.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9aad686de7e14f26a9bf000b0122785c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 31443373,
"upload_time": "2024-10-06T04:54:01",
"upload_time_iso_8601": "2024-10-06T04:54:01.202874Z",
"url": "https://files.pythonhosted.org/packages/36/25/5d6e57634218fb30d078209d33289c53ee1f21de4b547fe4014994a2076c/av-13.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5aee893efbd7fcda2bf63ba3efcb6dd1a7dff6aeee4b8962ccb6a71eda0c08e1",
"md5": "08611aa52f7b72f0247593059603d1f9",
"sha256": "c53917f326e460e784cf599da3e2b4d5c76c02c9fd2d32c4b8e24b86b159b6ba"
},
"downloads": -1,
"filename": "av-13.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "08611aa52f7b72f0247593059603d1f9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 30853824,
"upload_time": "2024-10-06T04:54:05",
"upload_time_iso_8601": "2024-10-06T04:54:05.143615Z",
"url": "https://files.pythonhosted.org/packages/5a/ee/893efbd7fcda2bf63ba3efcb6dd1a7dff6aeee4b8962ccb6a71eda0c08e1/av-13.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b824d199453f4b66f106d9cf80f0c102985dc0b27f230e3fabf9364dbc40ecf8",
"md5": "4a12a22d452a29f7df672dceb0f9a559",
"sha256": "e5bc5e8a5f3811dab471c412c50b7850912d85c804f500b75358b6af93e8ee8b"
},
"downloads": -1,
"filename": "av-13.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4a12a22d452a29f7df672dceb0f9a559",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 33267218,
"upload_time": "2024-10-06T04:54:08",
"upload_time_iso_8601": "2024-10-06T04:54:08.388658Z",
"url": "https://files.pythonhosted.org/packages/b8/24/d199453f4b66f106d9cf80f0c102985dc0b27f230e3fabf9364dbc40ecf8/av-13.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8510389ff1c47471bb8d110d41e902cef2e2b149803692e6ad769fec6a8715c",
"md5": "44088b25a2105750bb53a64dd0cb7a72",
"sha256": "6d7ae8510ff011fb4df0e0a6c50ef495a980d70968db17d138a7ccca322896cd"
},
"downloads": -1,
"filename": "av-13.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "44088b25a2105750bb53a64dd0cb7a72",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 25799430,
"upload_time": "2024-10-06T04:54:11",
"upload_time_iso_8601": "2024-10-06T04:54:11.651650Z",
"url": "https://files.pythonhosted.org/packages/d8/51/0389ff1c47471bb8d110d41e902cef2e2b149803692e6ad769fec6a8715c/av-13.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "636209859d91bc2309918d548ac4585973c53e7db27010c432d050f02206f9bd",
"md5": "e5fb3d86e0d4e89bf58448e39675d86e",
"sha256": "fc5118f78ee712b2c396f345e4c51e60e61e28f1f606adbd4060c4dc44b0b652"
},
"downloads": -1,
"filename": "av-13.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "e5fb3d86e0d4e89bf58448e39675d86e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 23861117,
"upload_time": "2024-10-06T04:54:17",
"upload_time_iso_8601": "2024-10-06T04:54:17.122450Z",
"url": "https://files.pythonhosted.org/packages/63/62/09859d91bc2309918d548ac4585973c53e7db27010c432d050f02206f9bd/av-13.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c743f186435a0acad3a2bdf271ce51d3af97ac3153a410e54a623529d39a1818",
"md5": "8f251e38f0f407b06bdba5fac43f0c5d",
"sha256": "81bcbd3545e523e7a350613be1866b515a5ee3fafa1d9d257d7ed02531fc2636"
},
"downloads": -1,
"filename": "av-13.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8f251e38f0f407b06bdba5fac43f0c5d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 19115008,
"upload_time": "2024-10-06T04:54:20",
"upload_time_iso_8601": "2024-10-06T04:54:20.581934Z",
"url": "https://files.pythonhosted.org/packages/c7/43/f186435a0acad3a2bdf271ce51d3af97ac3153a410e54a623529d39a1818/av-13.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "31eba1b4af95a615ba73dfc3cfcb9387e40826c92d7d6d383a1b68685a7ef920",
"md5": "bd553794ca4f117a4a4affc26fd26f1b",
"sha256": "83b2bc641e8e16bbf058de35f1ba79ebed358ac6fe3cb5a665366294774fdb18"
},
"downloads": -1,
"filename": "av-13.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bd553794ca4f117a4a4affc26fd26f1b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 22852637,
"upload_time": "2024-10-06T04:54:23",
"upload_time_iso_8601": "2024-10-06T04:54:23.404123Z",
"url": "https://files.pythonhosted.org/packages/31/eb/a1b4af95a615ba73dfc3cfcb9387e40826c92d7d6d383a1b68685a7ef920/av-13.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ba694a34aa672af7fef2939e4a5d6c4c6c28e33da0c623aaa9485d977eeaa95",
"md5": "f799a3a3eedf273b5d00d62c282a1898",
"sha256": "d956ae3e68fabdc45eb2b986c2e842a31df084d8cfc90336509f07a727a9df62"
},
"downloads": -1,
"filename": "av-13.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f799a3a3eedf273b5d00d62c282a1898",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 22703888,
"upload_time": "2024-10-06T04:54:26",
"upload_time_iso_8601": "2024-10-06T04:54:26.921439Z",
"url": "https://files.pythonhosted.org/packages/0b/a6/94a34aa672af7fef2939e4a5d6c4c6c28e33da0c623aaa9485d977eeaa95/av-13.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b96908a72ceed2c8a6e689dea2ef8e941df9469cbe144a600b83d45f821477fc",
"md5": "ccf75103e8fb096ed624d85959589cb8",
"sha256": "2ef076fcdf172aafcb21ea3ef7bd68cc9151b050016a8ace13b3dae3d08a4427"
},
"downloads": -1,
"filename": "av-13.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ccf75103e8fb096ed624d85959589cb8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 24657784,
"upload_time": "2024-10-06T04:54:30",
"upload_time_iso_8601": "2024-10-06T04:54:30.244822Z",
"url": "https://files.pythonhosted.org/packages/b9/69/08a72ceed2c8a6e689dea2ef8e941df9469cbe144a600b83d45f821477fc/av-13.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b78cc20894580a4341a76c7c74b59c43e26e6652b0fc60f7248f2c1bc5fdbb5e",
"md5": "f58b505481e369c0c53631c4ea4cc0ec",
"sha256": "bbf90397b7a466ff2879bd0944d55f796ad76c073fce50304315b83ad00113bd"
},
"downloads": -1,
"filename": "av-13.1.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "f58b505481e369c0c53631c4ea4cc0ec",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 25562492,
"upload_time": "2024-10-06T04:54:33",
"upload_time_iso_8601": "2024-10-06T04:54:33.711194Z",
"url": "https://files.pythonhosted.org/packages/b7/8c/c20894580a4341a76c7c74b59c43e26e6652b0fc60f7248f2c1bc5fdbb5e/av-13.1.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a543b5d80bc40327f763f864d92dd475e4ccd59d4202c40449e03fccb5dd01ed",
"md5": "f776c6ec2929e870dc118048f23985a6",
"sha256": "3804b57d04dc512c7ae15da9499373f37b8af7a80631899a9b3afd4c9007433b"
},
"downloads": -1,
"filename": "av-13.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "f776c6ec2929e870dc118048f23985a6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 23857632,
"upload_time": "2024-10-06T04:54:36",
"upload_time_iso_8601": "2024-10-06T04:54:36.933666Z",
"url": "https://files.pythonhosted.org/packages/a5/43/b5d80bc40327f763f864d92dd475e4ccd59d4202c40449e03fccb5dd01ed/av-13.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c71ef4bb5947654354456c3cca76272b49c3fdc967241f0e72c50303384031f2",
"md5": "1b83fb35a4d0af10ce08ec22945e2355",
"sha256": "1b94ee5ee160794c9874b4977e5c4d76d7250b2fd6f27202c66a4df4ad23e822"
},
"downloads": -1,
"filename": "av-13.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1b83fb35a4d0af10ce08ec22945e2355",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 19111206,
"upload_time": "2024-10-06T04:54:40",
"upload_time_iso_8601": "2024-10-06T04:54:40.166798Z",
"url": "https://files.pythonhosted.org/packages/c7/1e/f4bb5947654354456c3cca76272b49c3fdc967241f0e72c50303384031f2/av-13.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c26f9b6560e47463729dec795ec989bf7e099b9bd09c3d326420ec844d7faea9",
"md5": "ed7d3e5afa733c933295c1afbbe718bb",
"sha256": "6073ff4202e4a0c3aecab35ef99f84a3c4b4414c4b8ae771c965a2b52394148c"
},
"downloads": -1,
"filename": "av-13.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ed7d3e5afa733c933295c1afbbe718bb",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 22847916,
"upload_time": "2024-10-06T04:54:42",
"upload_time_iso_8601": "2024-10-06T04:54:42.918750Z",
"url": "https://files.pythonhosted.org/packages/c2/6f/9b6560e47463729dec795ec989bf7e099b9bd09c3d326420ec844d7faea9/av-13.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ee3fc3bd6957f8763ed21dcf0ce00969eda46670355bbd33ed2f47680e21d42",
"md5": "fd8f8b3076b24b730a43aa233b76d5d6",
"sha256": "c5ab17663b783e112837fb1c5f67098a561627e4a542cdf5bf1524f48478b897"
},
"downloads": -1,
"filename": "av-13.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "fd8f8b3076b24b730a43aa233b76d5d6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 22699046,
"upload_time": "2024-10-06T04:54:46",
"upload_time_iso_8601": "2024-10-06T04:54:46.064157Z",
"url": "https://files.pythonhosted.org/packages/4e/e3/fc3bd6957f8763ed21dcf0ce00969eda46670355bbd33ed2f47680e21d42/av-13.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "831d7f77560ede9da71851aac2bdb8880fac3d5b8f6fd811920e5ae61d9790de",
"md5": "688a52b079a4df1382c946cc82732964",
"sha256": "f422360f801a6f878d73aee4d404110ee6bb8f04846bf8815edb218da83bec49"
},
"downloads": -1,
"filename": "av-13.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "688a52b079a4df1382c946cc82732964",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 24653351,
"upload_time": "2024-10-06T04:54:49",
"upload_time_iso_8601": "2024-10-06T04:54:49.640447Z",
"url": "https://files.pythonhosted.org/packages/83/1d/7f77560ede9da71851aac2bdb8880fac3d5b8f6fd811920e5ae61d9790de/av-13.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f10e349a7b9dbc5b617d5708dba427f52fbd80985721f2ac73e65bc73d7fb1e6",
"md5": "85f078bf830f75f25a62eff85fd56f2a",
"sha256": "799cf56dc9399a1696e0445dcee6e17dfa67e2a76030934d678cfa7d7ae40172"
},
"downloads": -1,
"filename": "av-13.1.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "85f078bf830f75f25a62eff85fd56f2a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 25561212,
"upload_time": "2024-10-06T04:54:52",
"upload_time_iso_8601": "2024-10-06T04:54:52.892353Z",
"url": "https://files.pythonhosted.org/packages/f1/0e/349a7b9dbc5b617d5708dba427f52fbd80985721f2ac73e65bc73d7fb1e6/av-13.1.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c9d486d31e76784cc0ad943f420c5e05867263b32b37e2f4b0f7f22fdc1ca3a",
"md5": "d3674dba4056f523209e1190f8e044ea",
"sha256": "d3da736c55847d8596eb8c26c60e036f193001db3bc5c10da8665622d906c17e"
},
"downloads": -1,
"filename": "av-13.1.0.tar.gz",
"has_sig": false,
"md5_digest": "d3674dba4056f523209e1190f8e044ea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 3957908,
"upload_time": "2024-10-06T04:54:57",
"upload_time_iso_8601": "2024-10-06T04:54:57.507031Z",
"url": "https://files.pythonhosted.org/packages/0c/9d/486d31e76784cc0ad943f420c5e05867263b32b37e2f4b0f7f22fdc1ca3a/av-13.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-06 04:54:57",
"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"
}