Name | av JSON |
Version |
14.0.1
JSON |
| download |
home_page | https://github.com/PyAV-Org/PyAV |
Summary | Pythonic bindings for FFmpeg's libraries. |
upload_time | 2024-12-06 11:54:36 |
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/04/6a/8461055082eee773b549b87519eb8519c2194af1157f6971e3a0722b308e/av-14.0.1.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": "14.0.1",
"project_urls": {
"Bug Reports": "https://github.com/PyAV-Org/PyAV/discussions/new?category=4-bugs",
"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": "454f7860fc0b7ad179d63dcb73de894fe0dc897f42b871470406630ae363381f",
"md5": "a746ed27347f146d704270f869765476",
"sha256": "b17c4a584da9a68424e64c84069e625fa97dd9fe0a180c07ed514b08ce18491d"
},
"downloads": -1,
"filename": "av-14.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a746ed27347f146d704270f869765476",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 19534433,
"upload_time": "2024-12-06T11:52:28",
"upload_time_iso_8601": "2024-12-06T11:52:28.219367Z",
"url": "https://files.pythonhosted.org/packages/45/4f/7860fc0b7ad179d63dcb73de894fe0dc897f42b871470406630ae363381f/av-14.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae33aa0a017f2aa3addc3f2fb669803b56cc3bedf720ef66b880e684c48f6662",
"md5": "c2cb1944e6317ca96377d52b775b0e34",
"sha256": "4e2ca87332cb9e018341468f23e8ad6f71edeb7d05963dfe9edb75e2953d88da"
},
"downloads": -1,
"filename": "av-14.0.1-cp310-cp310-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "c2cb1944e6317ca96377d52b775b0e34",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 24336670,
"upload_time": "2024-12-06T11:52:31",
"upload_time_iso_8601": "2024-12-06T11:52:31.070844Z",
"url": "https://files.pythonhosted.org/packages/ae/33/aa0a017f2aa3addc3f2fb669803b56cc3bedf720ef66b880e684c48f6662/av-14.0.1-cp310-cp310-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1941b306d41e741087b46dcbbccb3f7960366941b6d9f358e8e6f28c561670a5",
"md5": "e86eddf7d01a8923a51b1c78ca733f9b",
"sha256": "b3b4ef54e692fa0c0fac097297e9581e7bd957eb604cf93df2ced84ed603a0cd"
},
"downloads": -1,
"filename": "av-14.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e86eddf7d01a8923a51b1c78ca733f9b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 31134472,
"upload_time": "2024-12-06T11:52:34",
"upload_time_iso_8601": "2024-12-06T11:52:34.323184Z",
"url": "https://files.pythonhosted.org/packages/19/41/b306d41e741087b46dcbbccb3f7960366941b6d9f358e8e6f28c561670a5/av-14.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5591fd28f6db6b7bff3b5bbc1d95911a8fe667ad0a7c930e8b7be492020af128",
"md5": "15dc6bdd4b22783da727a4087efba4c0",
"sha256": "0157e1b5b3e14cfe33a5c979a430c701da486df52c4d190b3897ebffd99ea2a4"
},
"downloads": -1,
"filename": "av-14.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "15dc6bdd4b22783da727a4087efba4c0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 30576165,
"upload_time": "2024-12-06T11:52:37",
"upload_time_iso_8601": "2024-12-06T11:52:37.236881Z",
"url": "https://files.pythonhosted.org/packages/55/91/fd28f6db6b7bff3b5bbc1d95911a8fe667ad0a7c930e8b7be492020af128/av-14.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e0fe6b49bf020f3edfe8df4516c6dd3e6a8d1d5a64b249b7ba2ac8677a6bcce",
"md5": "166167eefa5abe04a4f2abb95bc8d746",
"sha256": "8730fe02ff9189d6fa8ef314ab23af66dbf6256bcc6bafaa59cd71b2dc0be348"
},
"downloads": -1,
"filename": "av-14.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "166167eefa5abe04a4f2abb95bc8d746",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 32973393,
"upload_time": "2024-12-06T11:52:40",
"upload_time_iso_8601": "2024-12-06T11:52:40.595979Z",
"url": "https://files.pythonhosted.org/packages/3e/0f/e6b49bf020f3edfe8df4516c6dd3e6a8d1d5a64b249b7ba2ac8677a6bcce/av-14.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e1cc3a141a0ca3254f2c6125ba665b2ca7339885041f27bf420a72bcf96658b",
"md5": "58317a94dabd1502d61128fce5d449a5",
"sha256": "8e1eb3036040f00623ace9807ae45e5d0d62473331f8dfb526360e9c385fbbe4"
},
"downloads": -1,
"filename": "av-14.0.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "58317a94dabd1502d61128fce5d449a5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 25841421,
"upload_time": "2024-12-06T11:52:43",
"upload_time_iso_8601": "2024-12-06T11:52:43.895068Z",
"url": "https://files.pythonhosted.org/packages/5e/1c/c3a141a0ca3254f2c6125ba665b2ca7339885041f27bf420a72bcf96658b/av-14.0.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0746ad32d62c13369116ff9761c5e4eac248cfe9553abb6e4828f77a7adafaf6",
"md5": "dce24a1fc7349bc9c4bad3d3e8a2e6d0",
"sha256": "b9cfdc671bb7e09824897164626d76a8ecdc009c13afef3decb7071de57f0c71"
},
"downloads": -1,
"filename": "av-14.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dce24a1fc7349bc9c4bad3d3e8a2e6d0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 19527044,
"upload_time": "2024-12-06T11:52:46",
"upload_time_iso_8601": "2024-12-06T11:52:46.159772Z",
"url": "https://files.pythonhosted.org/packages/07/46/ad32d62c13369116ff9761c5e4eac248cfe9553abb6e4828f77a7adafaf6/av-14.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "736013024290b4c726a08ec83d4da4d8f46078479de9946df042456ea4688b47",
"md5": "c759f12f3b197512108e835e6eb1391e",
"sha256": "9198ffaab74b8ac659d14b355c1821208e8b16f35138f4922721113bc6c7b7ab"
},
"downloads": -1,
"filename": "av-14.0.1-cp311-cp311-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "c759f12f3b197512108e835e6eb1391e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 24331238,
"upload_time": "2024-12-06T11:52:49",
"upload_time_iso_8601": "2024-12-06T11:52:49.401383Z",
"url": "https://files.pythonhosted.org/packages/73/60/13024290b4c726a08ec83d4da4d8f46078479de9946df042456ea4688b47/av-14.0.1-cp311-cp311-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e9dc230d1a035ce69d43637da592be5f18a0c9d37b1eca9a07e4ab92f464351",
"md5": "2d40f2da2fdc15e8f86a16f999e2be64",
"sha256": "e85d933bbcde2db01d114419283edda35330ca651b11f9f5d6a694ce0c1b26ee"
},
"downloads": -1,
"filename": "av-14.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2d40f2da2fdc15e8f86a16f999e2be64",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 31990679,
"upload_time": "2024-12-06T11:52:52",
"upload_time_iso_8601": "2024-12-06T11:52:52.864368Z",
"url": "https://files.pythonhosted.org/packages/3e/9d/c230d1a035ce69d43637da592be5f18a0c9d37b1eca9a07e4ab92f464351/av-14.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f61ead56d9c2ced8c7770a84732d12ff33abab02c83629edf13232375a87f9f",
"md5": "8b89cb84529bd9ca8402677f47b240aa",
"sha256": "f1f13b662e8f8a7736fb7bc34e17d6c5a4e57b7142bae6b0502d962173883b26"
},
"downloads": -1,
"filename": "av-14.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8b89cb84529bd9ca8402677f47b240aa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 31345454,
"upload_time": "2024-12-06T11:52:56",
"upload_time_iso_8601": "2024-12-06T11:52:56.411971Z",
"url": "https://files.pythonhosted.org/packages/7f/61/ead56d9c2ced8c7770a84732d12ff33abab02c83629edf13232375a87f9f/av-14.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46b06380e05f36ec78c4695df9cc6c6fc6c3dec976caf105bacee5328f83d198",
"md5": "7c3284d36e003a3af577927753067462",
"sha256": "7e54203fccff31c8bc6563df6dceff8c236fd1e18fdb1771b1a56ed1525cd72b"
},
"downloads": -1,
"filename": "av-14.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7c3284d36e003a3af577927753067462",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 33811771,
"upload_time": "2024-12-06T11:52:59",
"upload_time_iso_8601": "2024-12-06T11:52:59.086515Z",
"url": "https://files.pythonhosted.org/packages/46/b0/6380e05f36ec78c4695df9cc6c6fc6c3dec976caf105bacee5328f83d198/av-14.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c4e2e8c56f999bfecfca773a83faa06b79cb6d619ce5a6abffce02e7be3efba",
"md5": "e66a1eb65cdffc829c49b975559d49f8",
"sha256": "25d817747929babe8b4a2a8dc06ce0562cc5d64a09231faa4d3b2b0037f3d71b"
},
"downloads": -1,
"filename": "av-14.0.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "e66a1eb65cdffc829c49b975559d49f8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 25843494,
"upload_time": "2024-12-06T11:53:02",
"upload_time_iso_8601": "2024-12-06T11:53:02.615108Z",
"url": "https://files.pythonhosted.org/packages/7c/4e/2e8c56f999bfecfca773a83faa06b79cb6d619ce5a6abffce02e7be3efba/av-14.0.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d01b198c3af186003b6429ad4dd9f654f99761a8efa59ab838884c6ac842117",
"md5": "e4f0fcf97f3e2c8ea650099166d7cb15",
"sha256": "e022c6ec1ef4bf324f83ecbe4aa6b0afa89e86537d8c5e15f065e4da1a5de6a8"
},
"downloads": -1,
"filename": "av-14.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e4f0fcf97f3e2c8ea650099166d7cb15",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 19530078,
"upload_time": "2024-12-06T11:53:08",
"upload_time_iso_8601": "2024-12-06T11:53:08.126424Z",
"url": "https://files.pythonhosted.org/packages/7d/01/b198c3af186003b6429ad4dd9f654f99761a8efa59ab838884c6ac842117/av-14.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00482f0ec27a521f4963683d76f3b7870c7667dfb8be4ab9512dad92566a8cbc",
"md5": "b9ea5c6261d37739dd13be20e104d823",
"sha256": "97daa268795449709f0034b19bb7ca4e99018825f9c7640fde30f2cb51f63f00"
},
"downloads": -1,
"filename": "av-14.0.1-cp312-cp312-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b9ea5c6261d37739dd13be20e104d823",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 24343809,
"upload_time": "2024-12-06T11:53:10",
"upload_time_iso_8601": "2024-12-06T11:53:10.436472Z",
"url": "https://files.pythonhosted.org/packages/00/48/2f0ec27a521f4963683d76f3b7870c7667dfb8be4ab9512dad92566a8cbc/av-14.0.1-cp312-cp312-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca6f1bf89ac1f82c79f797d8331a7b191a16c6a8336fc59dbbc3d0b66d543e0a",
"md5": "9312e6fd0409737e3460e638d5e5c206",
"sha256": "14faba003c6bf6d6b9b9521f77a2059cfd206ae95b48f610b14de8d5ba2ccd4e"
},
"downloads": -1,
"filename": "av-14.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9312e6fd0409737e3460e638d5e5c206",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 32252684,
"upload_time": "2024-12-06T11:53:12",
"upload_time_iso_8601": "2024-12-06T11:53:12.999046Z",
"url": "https://files.pythonhosted.org/packages/ca/6f/1bf89ac1f82c79f797d8331a7b191a16c6a8336fc59dbbc3d0b66d543e0a/av-14.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba718eedb586a32f7d1f8d23d9e0a7bc879d4dae6f82c2b7977c69171ea2e5b6",
"md5": "0a79c2b71addd5f75d4676cda81669d7",
"sha256": "9c1e0319a09525916a51f3c0ab4c07dfe9e82b3c1d8cf7aa3bb495d5dd28e767"
},
"downloads": -1,
"filename": "av-14.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0a79c2b71addd5f75d4676cda81669d7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 31617399,
"upload_time": "2024-12-06T11:53:15",
"upload_time_iso_8601": "2024-12-06T11:53:15.717005Z",
"url": "https://files.pythonhosted.org/packages/ba/71/8eedb586a32f7d1f8d23d9e0a7bc879d4dae6f82c2b7977c69171ea2e5b6/av-14.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16197a833ba5b3c190f204dabc138bbc3f06730084400d79723cbe8d5792364e",
"md5": "8ce797d53f5b3d7ec338f3aa538265ef",
"sha256": "d37bf19987c8cad8c5701c174bf4e89df7e2de97be2176bd81a2b0f86516f1c3"
},
"downloads": -1,
"filename": "av-14.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8ce797d53f5b3d7ec338f3aa538265ef",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 34166747,
"upload_time": "2024-12-06T11:53:19",
"upload_time_iso_8601": "2024-12-06T11:53:19.218444Z",
"url": "https://files.pythonhosted.org/packages/16/19/7a833ba5b3c190f204dabc138bbc3f06730084400d79723cbe8d5792364e/av-14.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a909825273ebdadae19b654ca54cfe4096af5c2e06dc53c31150510e8343d6f0",
"md5": "d7eb9715e131f4920116f8c87376fa9f",
"sha256": "a0893c45c426c0ae6681c689c8f669b7ca76cba4594f8ce50b240850e1145a62"
},
"downloads": -1,
"filename": "av-14.0.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "d7eb9715e131f4920116f8c87376fa9f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 25847349,
"upload_time": "2024-12-06T11:53:22",
"upload_time_iso_8601": "2024-12-06T11:53:22.620567Z",
"url": "https://files.pythonhosted.org/packages/a9/09/825273ebdadae19b654ca54cfe4096af5c2e06dc53c31150510e8343d6f0/av-14.0.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25323ce1b51d6638a1141614f24ed4f4e483613ae9b4a6e53f23f4a5b25907e2",
"md5": "7b63be8aede8ac45175fd796788ea70a",
"sha256": "71d7cae036bc362b3c255f99669e2e3412dc9b9e3e390ff426b9ea167f1f1c37"
},
"downloads": -1,
"filename": "av-14.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7b63be8aede8ac45175fd796788ea70a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19489839,
"upload_time": "2024-12-06T11:53:25",
"upload_time_iso_8601": "2024-12-06T11:53:25.015177Z",
"url": "https://files.pythonhosted.org/packages/25/32/3ce1b51d6638a1141614f24ed4f4e483613ae9b4a6e53f23f4a5b25907e2/av-14.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efe4152c072da36a91b3158816a304eed73d2ab1bc6accd690ccce5bcb2dbc3a",
"md5": "8c675ddc77ec40b88f62bd50a82753b2",
"sha256": "e54079e560cc8d91b9be224a8ced4c8c6b97efdb8932f27c56efcbc2181c8129"
},
"downloads": -1,
"filename": "av-14.0.1-cp313-cp313-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "8c675ddc77ec40b88f62bd50a82753b2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 24303231,
"upload_time": "2024-12-06T11:53:27",
"upload_time_iso_8601": "2024-12-06T11:53:27.456061Z",
"url": "https://files.pythonhosted.org/packages/ef/e4/152c072da36a91b3158816a304eed73d2ab1bc6accd690ccce5bcb2dbc3a/av-14.0.1-cp313-cp313-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6df1968a4182df7dae4badb581106c8655591d42d88bc8efcc54bd5f27c7f3a6",
"md5": "5a6dd9c46945d54a451d606c9f5a2677",
"sha256": "d98ab1b5ef8b13fa5875757d6e16fbe0a0c48e98e4c2c1da8478a0dda0ed500b"
},
"downloads": -1,
"filename": "av-14.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5a6dd9c46945d54a451d606c9f5a2677",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 31899455,
"upload_time": "2024-12-06T11:53:30",
"upload_time_iso_8601": "2024-12-06T11:53:30.456390Z",
"url": "https://files.pythonhosted.org/packages/6d/f1/968a4182df7dae4badb581106c8655591d42d88bc8efcc54bd5f27c7f3a6/av-14.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62fe61a85fc2c8286c11a0f607cc044b0c1cd858ddfc71004d5a9857d071f357",
"md5": "f29ec1005b372601b48f2987c09277fb",
"sha256": "15924960530541ae6a2b3ce5de2e9bcb5c20379ac57850cfac3ee179b4411f64"
},
"downloads": -1,
"filename": "av-14.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f29ec1005b372601b48f2987c09277fb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 31286047,
"upload_time": "2024-12-06T11:53:33",
"upload_time_iso_8601": "2024-12-06T11:53:33.879207Z",
"url": "https://files.pythonhosted.org/packages/62/fe/61a85fc2c8286c11a0f607cc044b0c1cd858ddfc71004d5a9857d071f357/av-14.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3865eb261662b8766007239f35c33e37589f51b6346fb29cd5281df49f01c84",
"md5": "9fd42a53d8b61f9869f625d3a83c89aa",
"sha256": "502ecd3cc0973cd2f868ec245bb3f838bb9d4da91bcc608f72a7cdd2cd44f0d1"
},
"downloads": -1,
"filename": "av-14.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9fd42a53d8b61f9869f625d3a83c89aa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 33822372,
"upload_time": "2024-12-06T11:53:37",
"upload_time_iso_8601": "2024-12-06T11:53:37.839191Z",
"url": "https://files.pythonhosted.org/packages/e3/86/5eb261662b8766007239f35c33e37589f51b6346fb29cd5281df49f01c84/av-14.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c78d3b55a58241a74a5b7458085203c98487018b6b507fefa100c21d815b6ec4",
"md5": "59f3aaf6f16b2c83cfd9b11136b64d2f",
"sha256": "7d4adddc7eb6119233b6fca6ad610904312c650eb1743ab52e28d1e5f0b5a466"
},
"downloads": -1,
"filename": "av-14.0.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "59f3aaf6f16b2c83cfd9b11136b64d2f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 25818678,
"upload_time": "2024-12-06T11:53:41",
"upload_time_iso_8601": "2024-12-06T11:53:41.253668Z",
"url": "https://files.pythonhosted.org/packages/c7/8d/3b55a58241a74a5b7458085203c98487018b6b507fefa100c21d815b6ec4/av-14.0.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2132af1f27ee96c4d58b022bb5ef155dad8426ffb35199f256091da4e807e38",
"md5": "e1eb55be9b2b57c29ea5842816bb8beb",
"sha256": "c5ce80e890b38e85ee6005c07b41eec1d7dbfacb92d5a30ccdaa19c804926a43"
},
"downloads": -1,
"filename": "av-14.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e1eb55be9b2b57c29ea5842816bb8beb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 19561948,
"upload_time": "2024-12-06T11:53:43",
"upload_time_iso_8601": "2024-12-06T11:53:43.821510Z",
"url": "https://files.pythonhosted.org/packages/e2/13/2af1f27ee96c4d58b022bb5ef155dad8426ffb35199f256091da4e807e38/av-14.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f1682be7008a28664608e46c9ef7ad0df581a618017833d28cf6d8b7053deb5",
"md5": "68f340edc717ca5be92f38679f842ed5",
"sha256": "2420da8e983ec80dcbef245e5d014519c8025e66d64bc8814aae027d0a1ab4b3"
},
"downloads": -1,
"filename": "av-14.0.1-cp39-cp39-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "68f340edc717ca5be92f38679f842ed5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 24365945,
"upload_time": "2024-12-06T11:53:47",
"upload_time_iso_8601": "2024-12-06T11:53:47.056953Z",
"url": "https://files.pythonhosted.org/packages/0f/16/82be7008a28664608e46c9ef7ad0df581a618017833d28cf6d8b7053deb5/av-14.0.1-cp39-cp39-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2f8a81e43d9deb8d21eaa23beb81b06f92501ffbe290cd9bdf6180ef61fbbf8",
"md5": "5673473aee0ae4de01e8e2be3b2b4b60",
"sha256": "71c390557e88fcaa673d4c6153756cedf9513c98c1c053063ae7a6a669b27dd6"
},
"downloads": -1,
"filename": "av-14.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5673473aee0ae4de01e8e2be3b2b4b60",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 31285336,
"upload_time": "2024-12-06T11:53:49",
"upload_time_iso_8601": "2024-12-06T11:53:49.562620Z",
"url": "https://files.pythonhosted.org/packages/e2/f8/a81e43d9deb8d21eaa23beb81b06f92501ffbe290cd9bdf6180ef61fbbf8/av-14.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38b79a6c230ab7576b86d578835ba746b12804d0fe45bcc1093e44b4ae8a3b0e",
"md5": "320199e52be4f5d4fe5b750324d1eb16",
"sha256": "b474738e078290edb8378332f24a2668e7f2a2b035f6ed5376c60b60d5540310"
},
"downloads": -1,
"filename": "av-14.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "320199e52be4f5d4fe5b750324d1eb16",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 30718895,
"upload_time": "2024-12-06T11:53:52",
"upload_time_iso_8601": "2024-12-06T11:53:52.151063Z",
"url": "https://files.pythonhosted.org/packages/38/b7/9a6c230ab7576b86d578835ba746b12804d0fe45bcc1093e44b4ae8a3b0e/av-14.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18e3e900732f5e29a33b78248a226c3ea2f1f89c276bec5540cf530b62a4052e",
"md5": "5e71a488a34845c2024f111d9b340fcc",
"sha256": "2ed7a2d805f397e408661287d9b2695c924718b4493f16ee0f198fef4802295c"
},
"downloads": -1,
"filename": "av-14.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5e71a488a34845c2024f111d9b340fcc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 33117859,
"upload_time": "2024-12-06T11:53:54",
"upload_time_iso_8601": "2024-12-06T11:53:54.943604Z",
"url": "https://files.pythonhosted.org/packages/18/e3/e900732f5e29a33b78248a226c3ea2f1f89c276bec5540cf530b62a4052e/av-14.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f42c117f6533483b3717df63afb255c789dd2d7b78ec0079056d2afbaf9ebad8",
"md5": "678fd2e832e828d8d0b2d6047b3485af",
"sha256": "e38abc42bf226955d65039da59f02a78e72b28bd2bf14dcd34ee5dccf0ee595c"
},
"downloads": -1,
"filename": "av-14.0.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "678fd2e832e828d8d0b2d6047b3485af",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 25865241,
"upload_time": "2024-12-06T11:53:57",
"upload_time_iso_8601": "2024-12-06T11:53:57.626986Z",
"url": "https://files.pythonhosted.org/packages/f4/2c/117f6533483b3717df63afb255c789dd2d7b78ec0079056d2afbaf9ebad8/av-14.0.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c64e2a85b00a42c6a9a960ea57aaa7566f86e710f518e809fdea54e45f197468",
"md5": "7248cc1d24c7eb7edd0f34418c0ec7b6",
"sha256": "e20ac19c2dc5147288fc486d11d6a404be05c71decb8718483c10b5db1c5b9fa"
},
"downloads": -1,
"filename": "av-14.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7248cc1d24c7eb7edd0f34418c0ec7b6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 19173024,
"upload_time": "2024-12-06T11:54:00",
"upload_time_iso_8601": "2024-12-06T11:54:00.361050Z",
"url": "https://files.pythonhosted.org/packages/c6/4e/2a85b00a42c6a9a960ea57aaa7566f86e710f518e809fdea54e45f197468/av-14.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a458f2636b6d9a8cb942a12811f25113cc6aedfc48b3a2c522c05c8506c7055c",
"md5": "d7d03ba95162aac7aa04c17dd1cc580f",
"sha256": "b42676a079850ef655a2fbcfa6e9633bbf9b0e21792327f8508b91b7d75f03ca"
},
"downloads": -1,
"filename": "av-14.0.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "d7d03ba95162aac7aa04c17dd1cc580f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 23924954,
"upload_time": "2024-12-06T11:54:02",
"upload_time_iso_8601": "2024-12-06T11:54:02.922223Z",
"url": "https://files.pythonhosted.org/packages/a4/58/f2636b6d9a8cb942a12811f25113cc6aedfc48b3a2c522c05c8506c7055c/av-14.0.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92d0c2e8fe7103ef088fe8eedbc6a2be7c6645d04c94264f4bfaba02365a1dee",
"md5": "ac785031bdbaa697729f8608375ed203",
"sha256": "fc82c6e03ba88015b4f15ad2f1bbc1a9a9bdc9f9dca126300b08f1f06cda5be4"
},
"downloads": -1,
"filename": "av-14.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ac785031bdbaa697729f8608375ed203",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 22870749,
"upload_time": "2024-12-06T11:54:09",
"upload_time_iso_8601": "2024-12-06T11:54:09.290838Z",
"url": "https://files.pythonhosted.org/packages/92/d0/c2e8fe7103ef088fe8eedbc6a2be7c6645d04c94264f4bfaba02365a1dee/av-14.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "426faeeb7275c48ddea886e2cff49d369ec3a7e0cb92f68ed808c6855e158954",
"md5": "f25021eb1c4e1ef71d5c178482abd262",
"sha256": "1da8b09c3e4acb48b3e30266f63c31d9448585777bc7ba9019d2c52b82eed09b"
},
"downloads": -1,
"filename": "av-14.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f25021eb1c4e1ef71d5c178482abd262",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 22731075,
"upload_time": "2024-12-06T11:54:13",
"upload_time_iso_8601": "2024-12-06T11:54:13.026590Z",
"url": "https://files.pythonhosted.org/packages/42/6f/aeeb7275c48ddea886e2cff49d369ec3a7e0cb92f68ed808c6855e158954/av-14.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b7f673c4fb5eecf8c5ecc83685d262c4dd2729e98b940d5a9d7529b375aa525",
"md5": "1920fe07052dfcb63a39f5040356bf1c",
"sha256": "dbae3c71f7b4ad1a347696aef51be68275eddf53e9d99eecd679590bfe71a743"
},
"downloads": -1,
"filename": "av-14.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1920fe07052dfcb63a39f5040356bf1c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 24690953,
"upload_time": "2024-12-06T11:54:15",
"upload_time_iso_8601": "2024-12-06T11:54:15.455004Z",
"url": "https://files.pythonhosted.org/packages/0b/7f/673c4fb5eecf8c5ecc83685d262c4dd2729e98b940d5a9d7529b375aa525/av-14.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54f1f56d2227b124828bfb1e6a4b92bedc7fe778bb60ca6bab169e639e16e5dc",
"md5": "df8442d9f2601e9f7687f19b4151e749",
"sha256": "c5717e65f89a3b77a0cd0804010cf64b0a32d2282856dd6cc6c567153245f9f1"
},
"downloads": -1,
"filename": "av-14.0.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "df8442d9f2601e9f7687f19b4151e749",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 25621503,
"upload_time": "2024-12-06T11:54:18",
"upload_time_iso_8601": "2024-12-06T11:54:18.012343Z",
"url": "https://files.pythonhosted.org/packages/54/f1/f56d2227b124828bfb1e6a4b92bedc7fe778bb60ca6bab169e639e16e5dc/av-14.0.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "922aff32f4792587b39e0ffaf448aca86ba1824bc1dbf2574bdaa17dccc5014b",
"md5": "b4a9e232a5a9b6bad4d3d541fa5dc6cd",
"sha256": "aba936a28a89de18d25891c28ab9ed54365606aa4c67954a1d7863cfb8c07907"
},
"downloads": -1,
"filename": "av-14.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b4a9e232a5a9b6bad4d3d541fa5dc6cd",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 19169327,
"upload_time": "2024-12-06T11:54:20",
"upload_time_iso_8601": "2024-12-06T11:54:20.467704Z",
"url": "https://files.pythonhosted.org/packages/92/2a/ff32f4792587b39e0ffaf448aca86ba1824bc1dbf2574bdaa17dccc5014b/av-14.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9141407ec4e0104bbfc126ad9ee820d06afddc67d7dfd2591fa2720e21607115",
"md5": "7799a0ad0b2904d789e17fd95f29bdc2",
"sha256": "8e82dc9745f7b7044899cd215746c21404a6acfc6e3ad5688c367f960a2f2136"
},
"downloads": -1,
"filename": "av-14.0.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "7799a0ad0b2904d789e17fd95f29bdc2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 23921584,
"upload_time": "2024-12-06T11:54:22",
"upload_time_iso_8601": "2024-12-06T11:54:22.928635Z",
"url": "https://files.pythonhosted.org/packages/91/41/407ec4e0104bbfc126ad9ee820d06afddc67d7dfd2591fa2720e21607115/av-14.0.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d840f1c19c43dc8f31f6478027034a85e15d7c55900cf0066c20224f24714a3e",
"md5": "936269ba505eb1c957e0364d7128471b",
"sha256": "0836da550eacfd1ec2c826f0533858b099bf91a2943975ab27781c674b99eca0"
},
"downloads": -1,
"filename": "av-14.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "936269ba505eb1c957e0364d7128471b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 22866638,
"upload_time": "2024-12-06T11:54:25",
"upload_time_iso_8601": "2024-12-06T11:54:25.386709Z",
"url": "https://files.pythonhosted.org/packages/d8/40/f1c19c43dc8f31f6478027034a85e15d7c55900cf0066c20224f24714a3e/av-14.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "002ada949dd75d09a6681406205c0e24bf7095b10e49a89e21481673706576fc",
"md5": "22b2223ca9fbfd1592634d32892f6022",
"sha256": "996e36d75460a912298b911cd09725c19b6c5c8ecd63df8f2a5aa00efd62c6c3"
},
"downloads": -1,
"filename": "av-14.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "22b2223ca9fbfd1592634d32892f6022",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 22726942,
"upload_time": "2024-12-06T11:54:28",
"upload_time_iso_8601": "2024-12-06T11:54:28.586031Z",
"url": "https://files.pythonhosted.org/packages/00/2a/da949dd75d09a6681406205c0e24bf7095b10e49a89e21481673706576fc/av-14.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96e40d5fe2271bebf17b41d4210f15c1f499592f8c435a68b24ae27533d445c2",
"md5": "5f3225da460e20c3d61131aefe912aaa",
"sha256": "8d05a983b003fb60ad3c8fc48c1cee049705b0dfd7c9a170b273c3c7a660db2a"
},
"downloads": -1,
"filename": "av-14.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5f3225da460e20c3d61131aefe912aaa",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 24687467,
"upload_time": "2024-12-06T11:54:31",
"upload_time_iso_8601": "2024-12-06T11:54:31.008229Z",
"url": "https://files.pythonhosted.org/packages/96/e4/0d5fe2271bebf17b41d4210f15c1f499592f8c435a68b24ae27533d445c2/av-14.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "922224a93d13a2fb453e3d06136298059390fccfc21eaaff5ab487dcc462e999",
"md5": "bbdad4c58c1d072c9933f904e3dcc8ae",
"sha256": "c4ddead4b0d478e6b2ce79d561a0448c195c7f42fa797facbc13f569c36e2896"
},
"downloads": -1,
"filename": "av-14.0.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "bbdad4c58c1d072c9933f904e3dcc8ae",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 25620535,
"upload_time": "2024-12-06T11:54:33",
"upload_time_iso_8601": "2024-12-06T11:54:33.605835Z",
"url": "https://files.pythonhosted.org/packages/92/22/24a93d13a2fb453e3d06136298059390fccfc21eaaff5ab487dcc462e999/av-14.0.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "046a8461055082eee773b549b87519eb8519c2194af1157f6971e3a0722b308e",
"md5": "aeaf14999a810dbeef105ee0989b1f1c",
"sha256": "2b0a17301af469ddaea46b5c1c982df1b7b5de8bc6c94cdc98cad4a67178c82a"
},
"downloads": -1,
"filename": "av-14.0.1.tar.gz",
"has_sig": false,
"md5_digest": "aeaf14999a810dbeef105ee0989b1f1c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 3918806,
"upload_time": "2024-12-06T11:54:36",
"upload_time_iso_8601": "2024-12-06T11:54:36.535296Z",
"url": "https://files.pythonhosted.org/packages/04/6a/8461055082eee773b549b87519eb8519c2194af1157f6971e3a0722b308e/av-14.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-06 11:54:36",
"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"
}