av


Nameav JSON
Version 16.0.1 PyPI version JSON
download
home_pageNone
SummaryPythonic bindings for FFmpeg's libraries.
upload_time2025-10-13 12:28:51
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
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.10",
    "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/15/c3/fd72a0315bc6c943ced1105aaac6e0ec1be57c70d8a616bd05acaa21ffee/av-16.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\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": "16.0.1",
    "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": "e83ceefa29b7d0f5afdf7af9197bbecad8ec2ad06bcb5ac7e909c05a624b00a6",
                "md5": "d44f4484a8de1ad6ce50d54c86e7645f",
                "sha256": "8b141aaa29a3afc96a1d467d106790782c1914628b57309eaadb8c10c299c9c0"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d44f4484a8de1ad6ce50d54c86e7645f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 27206679,
            "upload_time": "2025-10-13T12:24:41",
            "upload_time_iso_8601": "2025-10-13T12:24:41.145971Z",
            "url": "https://files.pythonhosted.org/packages/e8/3c/eefa29b7d0f5afdf7af9197bbecad8ec2ad06bcb5ac7e909c05a624b00a6/av-16.0.1-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac89a474feb07d5b94aa5af3771b0fe328056e2e0a840039b329f4fa2a1fd13a",
                "md5": "53647d9b9418753213fdd0bd3c285148",
                "sha256": "4b8a08a59a5be0082af063d3f4b216e3950340121c6ea95b505a3f5f5cc8f21d"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "53647d9b9418753213fdd0bd3c285148",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 21774556,
            "upload_time": "2025-10-13T12:24:44",
            "upload_time_iso_8601": "2025-10-13T12:24:44.332762Z",
            "url": "https://files.pythonhosted.org/packages/ac/89/a474feb07d5b94aa5af3771b0fe328056e2e0a840039b329f4fa2a1fd13a/av-16.0.1-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bee54361010dcac398bc224823e4b2a47803845e159af9f95164662c523770dc",
                "md5": "dddbc434aa5dc8cf3388a6cf7e9f0dcd",
                "sha256": "792e7fc3c08eae005ff36486983966476e553cbb55aaeb0ec99adc4909377320"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dddbc434aa5dc8cf3388a6cf7e9f0dcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 38176763,
            "upload_time": "2025-10-13T12:24:46",
            "upload_time_iso_8601": "2025-10-13T12:24:46.980527Z",
            "url": "https://files.pythonhosted.org/packages/be/e5/4361010dcac398bc224823e4b2a47803845e159af9f95164662c523770dc/av-16.0.1-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4dbb27bdd20c9dc80de5b8792dae16dd6f4edf16408c0c7b28070c6228a8057",
                "md5": "826862429c503dcf10f2844943741abb",
                "sha256": "4e8ef5df76d8d0ee56139789f80bb90ad1a82a7e6df6e080e2e95c06fa22aea7"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "826862429c503dcf10f2844943741abb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 39696277,
            "upload_time": "2025-10-13T12:24:50",
            "upload_time_iso_8601": "2025-10-13T12:24:50.951655Z",
            "url": "https://files.pythonhosted.org/packages/d4/db/b27bdd20c9dc80de5b8792dae16dd6f4edf16408c0c7b28070c6228a8057/av-16.0.1-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ec8dd48e6a3ac1e922c141475a0dc30e2b6dfdef9751b3274829889a9281cce",
                "md5": "60043ccc68ad2a4886598921af3a4e08",
                "sha256": "4f7a6985784a7464f078e419c71f5528c3e550ee5d605e7149b4a37a111eb136"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "60043ccc68ad2a4886598921af3a4e08",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 39576660,
            "upload_time": "2025-10-13T12:24:55",
            "upload_time_iso_8601": "2025-10-13T12:24:55.773149Z",
            "url": "https://files.pythonhosted.org/packages/4e/c8/dd48e6a3ac1e922c141475a0dc30e2b6dfdef9751b3274829889a9281cce/av-16.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9f0223d047e2e60672a2fb5e51e28913de8d52195199f3e949cbfda1e6cd64b",
                "md5": "27ff7e5f85428ff20a3dfe6102099cbc",
                "sha256": "3f45c8d7b803b6faa2a25a26de5964a0a897de68298d9c9672c7af9d65d8b48a"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27ff7e5f85428ff20a3dfe6102099cbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 40752775,
            "upload_time": "2025-10-13T12:25:00",
            "upload_time_iso_8601": "2025-10-13T12:25:00.827575Z",
            "url": "https://files.pythonhosted.org/packages/b9/f0/223d047e2e60672a2fb5e51e28913de8d52195199f3e949cbfda1e6cd64b/av-16.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "187373acad21c9203bc63d806e8baf42fe705eb5d36dafd1996b71ab5861a933",
                "md5": "ac0ca17be2d9e5e53004e090f395c1b6",
                "sha256": "58e6faf1d9328d8cc6be14c5aadacb7d2965ed6d6ae1af32696993096543ff00"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac0ca17be2d9e5e53004e090f395c1b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 32302328,
            "upload_time": "2025-10-13T12:25:06",
            "upload_time_iso_8601": "2025-10-13T12:25:06.042746Z",
            "url": "https://files.pythonhosted.org/packages/18/73/73acad21c9203bc63d806e8baf42fe705eb5d36dafd1996b71ab5861a933/av-16.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49d3f2a483c5273fccd556dfa1fce14fab3b5d6d213b46e28e54e254465a2255",
                "md5": "0b43b82fc2c79c1284be515e55b20d81",
                "sha256": "e310d1fb42879df9bad2152a8db6d2ff8bf332c8c36349a09d62cc122f5070fb"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b43b82fc2c79c1284be515e55b20d81",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 27191982,
            "upload_time": "2025-10-13T12:25:10",
            "upload_time_iso_8601": "2025-10-13T12:25:10.622917Z",
            "url": "https://files.pythonhosted.org/packages/49/d3/f2a483c5273fccd556dfa1fce14fab3b5d6d213b46e28e54e254465a2255/av-16.0.1-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e039dff28bd252131b3befd09d8587992fe18c09d5125eaefc83a6434d5f56ff",
                "md5": "7029c187c9c0850735efb0dd8ec69097",
                "sha256": "2f4b357e5615457a84e6b6290916b22864b76b43d5079e1a73bc27581a5b9bac"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7029c187c9c0850735efb0dd8ec69097",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 21760305,
            "upload_time": "2025-10-13T12:25:14",
            "upload_time_iso_8601": "2025-10-13T12:25:14.882315Z",
            "url": "https://files.pythonhosted.org/packages/e0/39/dff28bd252131b3befd09d8587992fe18c09d5125eaefc83a6434d5f56ff/av-16.0.1-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a4d2312d50a09c84a9b4269f7fea5de84f05dd2b7c7113dd961d31fad6c64c4",
                "md5": "21ce6297f2078ef1bbb386273eec419d",
                "sha256": "286665c77034c3a98080169b8b5586d5568a15da81fbcdaf8099252f2d232d7c"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21ce6297f2078ef1bbb386273eec419d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 38691616,
            "upload_time": "2025-10-13T12:25:20",
            "upload_time_iso_8601": "2025-10-13T12:25:20.063551Z",
            "url": "https://files.pythonhosted.org/packages/4a/4d/2312d50a09c84a9b4269f7fea5de84f05dd2b7c7113dd961d31fad6c64c4/av-16.0.1-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "159a3d2d30b56252f998e53fced13720e2ce809c4db477110f944034e0fa4c9f",
                "md5": "dceac9eca5aea68e87a76ce139987d85",
                "sha256": "f88de8e5b8ea29e41af4d8d61df108323d050ccfbc90f15b13ec1f99ce0e841e"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dceac9eca5aea68e87a76ce139987d85",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 40216464,
            "upload_time": "2025-10-13T12:25:24",
            "upload_time_iso_8601": "2025-10-13T12:25:24.848507Z",
            "url": "https://files.pythonhosted.org/packages/15/9a/3d2d30b56252f998e53fced13720e2ce809c4db477110f944034e0fa4c9f/av-16.0.1-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98cb3860054794a47715b4be0006105158c7119a57be58d9e8882b72e4d4e1dd",
                "md5": "c39f7f73630dea61227cfb51cf1f8321",
                "sha256": "0cdb71ebe4d1b241cf700f8f0c44a7d2a6602b921e16547dd68c0842113736e1"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c39f7f73630dea61227cfb51cf1f8321",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 40094077,
            "upload_time": "2025-10-13T12:25:30",
            "upload_time_iso_8601": "2025-10-13T12:25:30.238433Z",
            "url": "https://files.pythonhosted.org/packages/98/cb/3860054794a47715b4be0006105158c7119a57be58d9e8882b72e4d4e1dd/av-16.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "415879830fb8af0a89c015250f7864bbd427dff09c70575c97847055f8a302f7",
                "md5": "1daad71854048031e9e30d4f787be511",
                "sha256": "28c27a65d40e8cf82b6db2543f8feeb8b56d36c1938f50773494cd3b073c7223"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1daad71854048031e9e30d4f787be511",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 41279948,
            "upload_time": "2025-10-13T12:25:35",
            "upload_time_iso_8601": "2025-10-13T12:25:35.240222Z",
            "url": "https://files.pythonhosted.org/packages/41/58/79830fb8af0a89c015250f7864bbd427dff09c70575c97847055f8a302f7/av-16.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83796e1463b04382f379f857113b851cf5f9d580a2f7bd794211cd75352f4e04",
                "md5": "2069253e57c5f75bddbbb7bd8b5d513c",
                "sha256": "ffea39ac7574f234f5168f9b9602e8d4ecdd81853238ec4d661001f03a6d3f64"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2069253e57c5f75bddbbb7bd8b5d513c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 32297586,
            "upload_time": "2025-10-13T12:25:39",
            "upload_time_iso_8601": "2025-10-13T12:25:39.826418Z",
            "url": "https://files.pythonhosted.org/packages/83/79/6e1463b04382f379f857113b851cf5f9d580a2f7bd794211cd75352f4e04/av-16.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "447812a11d7a44fdd8b26a65e2efa1d8a5826733c8887a989a78306ec4785956",
                "md5": "50fa46e22ba35279c61c89ab2baa9ebf",
                "sha256": "e41a8fef85dfb2c717349f9ff74f92f9560122a9f1a94b1c6c9a8a9c9462ba71"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50fa46e22ba35279c61c89ab2baa9ebf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 27206375,
            "upload_time": "2025-10-13T12:25:44",
            "upload_time_iso_8601": "2025-10-13T12:25:44.423867Z",
            "url": "https://files.pythonhosted.org/packages/44/78/12a11d7a44fdd8b26a65e2efa1d8a5826733c8887a989a78306ec4785956/av-16.0.1-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27193a4d3882852a0ee136121979ce46f6d2867b974eb217a2c9a070939f55ad",
                "md5": "3f9b30c348b36657ba27a90b7571de39",
                "sha256": "6352a64b25c9f985d4f279c2902db9a92424e6f2c972161e67119616f0796cb9"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3f9b30c348b36657ba27a90b7571de39",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 21752603,
            "upload_time": "2025-10-13T12:25:49",
            "upload_time_iso_8601": "2025-10-13T12:25:49.122055Z",
            "url": "https://files.pythonhosted.org/packages/27/19/3a4d3882852a0ee136121979ce46f6d2867b974eb217a2c9a070939f55ad/av-16.0.1-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb6ef7abefba6e008e2f69bebb9a17ba38ce1df240c79b36a5b5fcacf8c8fcfd",
                "md5": "4b64bb26196ad314fc0ef6cbff18b513",
                "sha256": "5201f7b4b5ed2128118cb90c2a6d64feedb0586ca7c783176896c78ffb4bbd5c"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4b64bb26196ad314fc0ef6cbff18b513",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 38931978,
            "upload_time": "2025-10-13T12:25:55",
            "upload_time_iso_8601": "2025-10-13T12:25:55.021248Z",
            "url": "https://files.pythonhosted.org/packages/cb/6e/f7abefba6e008e2f69bebb9a17ba38ce1df240c79b36a5b5fcacf8c8fcfd/av-16.0.1-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b27a1305243ab47f724fdd99ddef7309a594e669af7f0e655e11bdd2c325dfae",
                "md5": "8b38a58cf4a261a765e395edf783ee1e",
                "sha256": "daecc2072b82b6a942acbdaa9a2e00c05234c61fef976b22713983c020b07992"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b38a58cf4a261a765e395edf783ee1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 40549383,
            "upload_time": "2025-10-13T12:26:00",
            "upload_time_iso_8601": "2025-10-13T12:26:00.897065Z",
            "url": "https://files.pythonhosted.org/packages/b2/7a/1305243ab47f724fdd99ddef7309a594e669af7f0e655e11bdd2c325dfae/av-16.0.1-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32b2357cc063185043eb757b4a48782bff780826103bcad1eb40c3ddfc050b7e",
                "md5": "8d5aee42b8748aa71c9f794d3ff03c57",
                "sha256": "6573da96e8bebc3536860a7def108d7dbe1875c86517072431ced702447e6aea"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8d5aee42b8748aa71c9f794d3ff03c57",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 40241993,
            "upload_time": "2025-10-13T12:26:06",
            "upload_time_iso_8601": "2025-10-13T12:26:06.993159Z",
            "url": "https://files.pythonhosted.org/packages/32/b2/357cc063185043eb757b4a48782bff780826103bcad1eb40c3ddfc050b7e/av-16.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20bbced42a4588ba168bf0ef1e9d016982e3ba09fde6992f1dda586fd20dcf71",
                "md5": "b1e56f17a70614cfd5f6732cd488d978",
                "sha256": "4bc064e48a8de6c087b97dd27cf4ef8c13073f0793108fbce3ecd721201b2502"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1e56f17a70614cfd5f6732cd488d978",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 41532235,
            "upload_time": "2025-10-13T12:26:12",
            "upload_time_iso_8601": "2025-10-13T12:26:12.488517Z",
            "url": "https://files.pythonhosted.org/packages/20/bb/ced42a4588ba168bf0ef1e9d016982e3ba09fde6992f1dda586fd20dcf71/av-16.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1537c7811eca0f318d5fd3212f7e8c3d8335f75a54907c97a89213dc580b8056",
                "md5": "9a228d2c8c5a26c6daf65c610c45a3fc",
                "sha256": "0c669b6b6668c8ae74451c15ec6d6d8a36e4c3803dc5d9910f607a174dd18f17"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9a228d2c8c5a26c6daf65c610c45a3fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 32296912,
            "upload_time": "2025-10-13T12:26:19",
            "upload_time_iso_8601": "2025-10-13T12:26:19.187326Z",
            "url": "https://files.pythonhosted.org/packages/15/37/c7811eca0f318d5fd3212f7e8c3d8335f75a54907c97a89213dc580b8056/av-16.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8659972f199ccc4f8c9e51f59e0f8962a09407396b3f6d11355e2c697ba555f9",
                "md5": "111cf112f41e06268b84f5ccc9f140b9",
                "sha256": "4c61c6c120f5c5d95c711caf54e2c4a9fb2f1e613ac0a9c273d895f6b2602e44"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "111cf112f41e06268b84f5ccc9f140b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 27170433,
            "upload_time": "2025-10-13T12:26:24",
            "upload_time_iso_8601": "2025-10-13T12:26:24.673859Z",
            "url": "https://files.pythonhosted.org/packages/86/59/972f199ccc4f8c9e51f59e0f8962a09407396b3f6d11355e2c697ba555f9/av-16.0.1-cp313-cp313-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "539d0514cbc185fb20353ab25da54197fbd169a233e39efcbb26533c36a9dbb9",
                "md5": "7728a278bb6b40d0ff3432b1408cb6fe",
                "sha256": "7ecc2e41320c69095f44aff93470a0d32c30892b2dbad0a08040441c81efa379"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7728a278bb6b40d0ff3432b1408cb6fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 21717654,
            "upload_time": "2025-10-13T12:26:29",
            "upload_time_iso_8601": "2025-10-13T12:26:29.120601Z",
            "url": "https://files.pythonhosted.org/packages/53/9d/0514cbc185fb20353ab25da54197fbd169a233e39efcbb26533c36a9dbb9/av-16.0.1-cp313-cp313-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "328c881409dd124b4e07d909d2b70568acb21126fc747656390840a2238651c9",
                "md5": "39e5d61b39fba45e4895d816b9aab247",
                "sha256": "036f0554d6faef3f4a94acaeb0cedd388e3ab96eb0eb5a14ec27c17369c466c9"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "39e5d61b39fba45e4895d816b9aab247",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 38651601,
            "upload_time": "2025-10-13T12:26:33",
            "upload_time_iso_8601": "2025-10-13T12:26:33.919017Z",
            "url": "https://files.pythonhosted.org/packages/32/8c/881409dd124b4e07d909d2b70568acb21126fc747656390840a2238651c9/av-16.0.1-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35fd867ba4cc3ab504442dc89b0c117e6a994fc62782eb634c8f31304586f93e",
                "md5": "1c378c1551c70f2a5da52d5f4e2c27ce",
                "sha256": "876415470a62e4a3550cc38db2fc0094c25e64eea34d7293b7454125d5958190"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c378c1551c70f2a5da52d5f4e2c27ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 40278604,
            "upload_time": "2025-10-13T12:26:39",
            "upload_time_iso_8601": "2025-10-13T12:26:39.200997Z",
            "url": "https://files.pythonhosted.org/packages/35/fd/867ba4cc3ab504442dc89b0c117e6a994fc62782eb634c8f31304586f93e/av-16.0.1-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b38763cde866c0af09a1fa9727b4f40b34d71b0535785f5665c27894306f1fbc",
                "md5": "fc64b17edbf67e8cb61556bc4e60fa71",
                "sha256": "56902a06bd0828d13f13352874c370670882048267191ff5829534b611ba3956"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc64b17edbf67e8cb61556bc4e60fa71",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 39984854,
            "upload_time": "2025-10-13T12:26:44",
            "upload_time_iso_8601": "2025-10-13T12:26:44.581704Z",
            "url": "https://files.pythonhosted.org/packages/b3/87/63cde866c0af09a1fa9727b4f40b34d71b0535785f5665c27894306f1fbc/av-16.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "713b8f40a708bff0e6b0f957836e2ef1f4d4429041cf8d99a415a77ead8ac8a3",
                "md5": "134c25a44a3f655b74a32fde6ebacc16",
                "sha256": "fe988c2bf0fc2d952858f791f18377ea4ae4e19ba3504793799cd6c2a2562edf"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "134c25a44a3f655b74a32fde6ebacc16",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 41270352,
            "upload_time": "2025-10-13T12:26:50",
            "upload_time_iso_8601": "2025-10-13T12:26:50.817569Z",
            "url": "https://files.pythonhosted.org/packages/71/3b/8f40a708bff0e6b0f957836e2ef1f4d4429041cf8d99a415a77ead8ac8a3/av-16.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffe9a5b714bc078fdcca8b46c8a0b38484ae5c24cd81d9c1703d3e8ae2b57259",
                "md5": "cd0e4c117facd63ab8ffbb28004750ec",
                "sha256": "79a77ee452537030c21a0b41139bedaf16629636bf764b634e93b99c9d5f4558"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313t-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd0e4c117facd63ab8ffbb28004750ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 27248984,
            "upload_time": "2025-10-13T12:27:00",
            "upload_time_iso_8601": "2025-10-13T12:27:00.564579Z",
            "url": "https://files.pythonhosted.org/packages/ff/e9/a5b714bc078fdcca8b46c8a0b38484ae5c24cd81d9c1703d3e8ae2b57259/av-16.0.1-cp313-cp313t-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06efff777aaf1f88e3f6ce94aca4c5806a0c360e68d48f9d9f0214e42650f740",
                "md5": "3031e95a94858bce4e9d3d71466f371c",
                "sha256": "080823a6ff712f81e7089ae9756fb1512ca1742a138556a852ce50f58e457213"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313t-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3031e95a94858bce4e9d3d71466f371c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 21828098,
            "upload_time": "2025-10-13T12:27:05",
            "upload_time_iso_8601": "2025-10-13T12:27:05.433819Z",
            "url": "https://files.pythonhosted.org/packages/06/ef/ff777aaf1f88e3f6ce94aca4c5806a0c360e68d48f9d9f0214e42650f740/av-16.0.1-cp313-cp313t-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34d7a484358d24a42bedde97f61f5d6ee568a7dd866d9df6e33731378db92d9e",
                "md5": "68ab401438a4503a127d6d7d7494163a",
                "sha256": "04e00124afa8b46a850ed48951ddda61de874407fb8307d6a875bba659d5727e"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "68ab401438a4503a127d6d7d7494163a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 40051697,
            "upload_time": "2025-10-13T12:27:10",
            "upload_time_iso_8601": "2025-10-13T12:27:10.525130Z",
            "url": "https://files.pythonhosted.org/packages/34/d7/a484358d24a42bedde97f61f5d6ee568a7dd866d9df6e33731378db92d9e/av-16.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73876772d6080837da5d5c810a98a95bde6977e1f5a6e2e759e8c9292af9ec69",
                "md5": "5b402885a4fb9f2dc6bdcf2a59a35bae",
                "sha256": "bc098c1c6dc4e7080629a7e9560e67bd4b5654951e17e5ddfd2b1515cfcd37db"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b402885a4fb9f2dc6bdcf2a59a35bae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 41352596,
            "upload_time": "2025-10-13T12:27:16",
            "upload_time_iso_8601": "2025-10-13T12:27:16.217169Z",
            "url": "https://files.pythonhosted.org/packages/73/87/6772d6080837da5d5c810a98a95bde6977e1f5a6e2e759e8c9292af9ec69/av-16.0.1-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd58fe448c60cf7f85640a0ed8936f16bac874846aa35e1baa521028949c1ea3",
                "md5": "a323fa0f9eecf61b67a00d88a15ac8c8",
                "sha256": "e6ffd3559a72c46a76aa622630751a821499ba5a780b0047ecc75105d43a6b61"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a323fa0f9eecf61b67a00d88a15ac8c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 41183156,
            "upload_time": "2025-10-13T12:27:21",
            "upload_time_iso_8601": "2025-10-13T12:27:21.574211Z",
            "url": "https://files.pythonhosted.org/packages/bd/58/fe448c60cf7f85640a0ed8936f16bac874846aa35e1baa521028949c1ea3/av-16.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85c6a039a0979d0c278e1bed6758d5a6186416c3ccb8081970df893fdf9a0d99",
                "md5": "73c35c11b77ab1fb1a81d917db62432b",
                "sha256": "7a3f1a36b550adadd7513f4f5ee956f9e06b01a88e59f3150ef5fec6879d6f79"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73c35c11b77ab1fb1a81d917db62432b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 42302331,
            "upload_time": "2025-10-13T12:27:26",
            "upload_time_iso_8601": "2025-10-13T12:27:26.953516Z",
            "url": "https://files.pythonhosted.org/packages/85/c6/a039a0979d0c278e1bed6758d5a6186416c3ccb8081970df893fdf9a0d99/av-16.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "187b2ca4a9e3609ff155436dac384e360f530919cb1e328491f7df294be0f0dc",
                "md5": "aaab82e532e0e25639930f84ec8fca63",
                "sha256": "c6de794abe52b8c0be55d8bb09ade05905efa74b1a5ab4860b4b9c2bfb6578bf"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aaab82e532e0e25639930f84ec8fca63",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 32462194,
            "upload_time": "2025-10-13T12:27:32",
            "upload_time_iso_8601": "2025-10-13T12:27:32.942820Z",
            "url": "https://files.pythonhosted.org/packages/18/7b/2ca4a9e3609ff155436dac384e360f530919cb1e328491f7df294be0f0dc/av-16.0.1-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1eb5c114292cb58a7269405ae13b7ba48c7d7bfeebbb2e4e66c8073c065a4430",
                "md5": "74fd3b59032ffd742fa24e2ff88b851d",
                "sha256": "708a66c248848029bf518f0482b81c5803846f1b597ef8013b19c014470b620f"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74fd3b59032ffd742fa24e2ff88b851d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 32273242,
            "upload_time": "2025-10-13T12:26:55",
            "upload_time_iso_8601": "2025-10-13T12:26:55.788969Z",
            "url": "https://files.pythonhosted.org/packages/1e/b5/c114292cb58a7269405ae13b7ba48c7d7bfeebbb2e4e66c8073c065a4430/av-16.0.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "149a6d17e379906cf53a7a44dfac9cf7e4b2e7df2082ba2dbf07126055effcc1",
                "md5": "d6a8ed720e2357a773ac5391fc153db1",
                "sha256": "4b55ba69a943ae592ad7900da67129422954789de9dc384685d6b529925f542e"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6a8ed720e2357a773ac5391fc153db1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 27167101,
            "upload_time": "2025-10-13T12:27:38",
            "upload_time_iso_8601": "2025-10-13T12:27:38.886487Z",
            "url": "https://files.pythonhosted.org/packages/14/9a/6d17e379906cf53a7a44dfac9cf7e4b2e7df2082ba2dbf07126055effcc1/av-16.0.1-cp314-cp314-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c34891816cd82d5646cb5a51d201d20be0a578232536d083b7d939734258067",
                "md5": "4c63fad7742678bf7beb71fe1aa8bc8a",
                "sha256": "d4a0c47b6c9bbadad8909b82847f5fe64a608ad392f0b01704e427349bcd9a47"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4c63fad7742678bf7beb71fe1aa8bc8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 21722708,
            "upload_time": "2025-10-13T12:27:43",
            "upload_time_iso_8601": "2025-10-13T12:27:43.290838Z",
            "url": "https://files.pythonhosted.org/packages/6c/34/891816cd82d5646cb5a51d201d20be0a578232536d083b7d939734258067/av-16.0.1-cp314-cp314-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d20c24ad34038423ab8c9728cef3301e0861727c188442dcfd70a4a10834c63",
                "md5": "c6e4cfbecb14064ab06444a4688e09b2",
                "sha256": "8bba52f3035708456f6b1994d10b0371b45cfd8f917b5e84ff81aef4ec2f08bf"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c6e4cfbecb14064ab06444a4688e09b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 38638842,
            "upload_time": "2025-10-13T12:27:49",
            "upload_time_iso_8601": "2025-10-13T12:27:49.776918Z",
            "url": "https://files.pythonhosted.org/packages/1d/20/c24ad34038423ab8c9728cef3301e0861727c188442dcfd70a4a10834c63/av-16.0.1-cp314-cp314-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d732034412309572ba3ad713079d07a3ffc13739263321aece54a3055d7a4f1f",
                "md5": "180b6f50a7e78d5ee7f45d6463a63de1",
                "sha256": "08e34c7e7b5e55e29931180bbe21095e1874ac120992bf6b8615d39574487617"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "180b6f50a7e78d5ee7f45d6463a63de1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 40197789,
            "upload_time": "2025-10-13T12:27:55",
            "upload_time_iso_8601": "2025-10-13T12:27:55.688774Z",
            "url": "https://files.pythonhosted.org/packages/d7/32/034412309572ba3ad713079d07a3ffc13739263321aece54a3055d7a4f1f/av-16.0.1-cp314-cp314-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb9c40496298c32f9094e7df28641c5c58aa6fb07554dc232a9ac98a9894376f",
                "md5": "63b3b3c90ebc8cd7439cfe6139e93c40",
                "sha256": "0d6250ab9db80c641b299987027c987f14935ea837ea4c02c5f5182f6b69d9e5"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "63b3b3c90ebc8cd7439cfe6139e93c40",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 39980829,
            "upload_time": "2025-10-13T12:28:01",
            "upload_time_iso_8601": "2025-10-13T12:28:01.507998Z",
            "url": "https://files.pythonhosted.org/packages/fb/9c/40496298c32f9094e7df28641c5c58aa6fb07554dc232a9ac98a9894376f/av-16.0.1-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a7e5c38268ac1d424f309b13b2de4597ad28daea6039ee5af061e62918b12a8",
                "md5": "89dca14160723dea23f3a1943dcdf00a",
                "sha256": "7b621f28d8bcbb07cdcd7b18943ddc040739ad304545715ae733873b6e1b739d"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89dca14160723dea23f3a1943dcdf00a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 41205928,
            "upload_time": "2025-10-13T12:28:08",
            "upload_time_iso_8601": "2025-10-13T12:28:08.431432Z",
            "url": "https://files.pythonhosted.org/packages/4a/7e/5c38268ac1d424f309b13b2de4597ad28daea6039ee5af061e62918b12a8/av-16.0.1-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a4710e03b88de097385d1550cbb6d8de96159131705c13adb92bd9b7e677425",
                "md5": "72d89a890d821089994e0706e10afb8f",
                "sha256": "07c464bf2bc362a154eccc82e235ef64fd3aaf8d76fc8ed63d0ae520943c6d3f"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314t-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72d89a890d821089994e0706e10afb8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 27248864,
            "upload_time": "2025-10-13T12:28:17",
            "upload_time_iso_8601": "2025-10-13T12:28:17.467444Z",
            "url": "https://files.pythonhosted.org/packages/8a/47/10e03b88de097385d1550cbb6d8de96159131705c13adb92bd9b7e677425/av-16.0.1-cp314-cp314t-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1607447f206bec3e55e81371f1989098baa2fe9adb7b46c149e6937b7e7c1ca",
                "md5": "1682830a4c297d1562bb972264970a39",
                "sha256": "750da0673864b669c95882c7b25768cd93ece0e47010d74ebcc29dbb14d611f8"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314t-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1682830a4c297d1562bb972264970a39",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 21828185,
            "upload_time": "2025-10-13T12:28:21",
            "upload_time_iso_8601": "2025-10-13T12:28:21.461496Z",
            "url": "https://files.pythonhosted.org/packages/b1/60/7447f206bec3e55e81371f1989098baa2fe9adb7b46c149e6937b7e7c1ca/av-16.0.1-cp314-cp314t-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6848ee2680e7a01bc4911bbe902b814346911fa2528697a44f3043ee68e0f07e",
                "md5": "edc733e77883c567e9d48f00f9521f86",
                "sha256": "0b7c0d060863b2e341d07cd26851cb9057b7979814148b028fb7ee5d5eb8772d"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314t-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "edc733e77883c567e9d48f00f9521f86",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 40040572,
            "upload_time": "2025-10-13T12:28:26",
            "upload_time_iso_8601": "2025-10-13T12:28:26.585618Z",
            "url": "https://files.pythonhosted.org/packages/68/48/ee2680e7a01bc4911bbe902b814346911fa2528697a44f3043ee68e0f07e/av-16.0.1-cp314-cp314t-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da682c43d28871721ae07cde432d6e36ae2f7035197cbadb43764cc5bf3d4b33",
                "md5": "33314481fb23e23d4e515007b5ec6709",
                "sha256": "e67c2eca6023ca7d76b0709c5f392b23a5defba499f4c262411f8155b1482cbd"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314t-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33314481fb23e23d4e515007b5ec6709",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 41344288,
            "upload_time": "2025-10-13T12:28:32",
            "upload_time_iso_8601": "2025-10-13T12:28:32.512204Z",
            "url": "https://files.pythonhosted.org/packages/da/68/2c43d28871721ae07cde432d6e36ae2f7035197cbadb43764cc5bf3d4b33/av-16.0.1-cp314-cp314t-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec7f1d801bff43ae1af4758c45eee2eaae64f303bbb460e79f352f08587fd179",
                "md5": "27cc480a2039f5c564682140b7665efe",
                "sha256": "e3243d54d84986e8fbdc1946db634b0c41fe69b6de35a99fa8b763e18503d040"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "27cc480a2039f5c564682140b7665efe",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 41175142,
            "upload_time": "2025-10-13T12:28:38",
            "upload_time_iso_8601": "2025-10-13T12:28:38.356644Z",
            "url": "https://files.pythonhosted.org/packages/ec/7f/1d801bff43ae1af4758c45eee2eaae64f303bbb460e79f352f08587fd179/av-16.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e406bb363138687066bbf8997c1433dbd9c81762bae120955ea431fb72d69d26",
                "md5": "b6af1319f84c20859bc9bbb463b95bf2",
                "sha256": "a1bcf73efab5379601e6510abd7afe5f397d0f6defe69b1610c2f37a4a17996b"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6af1319f84c20859bc9bbb463b95bf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 42293932,
            "upload_time": "2025-10-13T12:28:43",
            "upload_time_iso_8601": "2025-10-13T12:28:43.442386Z",
            "url": "https://files.pythonhosted.org/packages/e4/06/bb363138687066bbf8997c1433dbd9c81762bae120955ea431fb72d69d26/av-16.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92155e713098a085f970ccf88550194d277d244464d7b3a7365ad92acb4b6dc1",
                "md5": "5c37917ebae0039b171fdbf89478d756",
                "sha256": "6368d4ff153d75469d2a3217bc403630dc870a72fe0a014d9135de550d731a86"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5c37917ebae0039b171fdbf89478d756",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 32460624,
            "upload_time": "2025-10-13T12:28:48",
            "upload_time_iso_8601": "2025-10-13T12:28:48.767077Z",
            "url": "https://files.pythonhosted.org/packages/92/15/5e713098a085f970ccf88550194d277d244464d7b3a7365ad92acb4b6dc1/av-16.0.1-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3073176e02692d8753a6c4606021c60e4031341afb56292178eee633b6760a4",
                "md5": "692c0b83cc35836b716032f36c8928b2",
                "sha256": "92101f49082392580c9dba4ba2fe5b931b3bb0fb75a1a848bfb9a11ded68be91"
            },
            "downloads": -1,
            "filename": "av-16.0.1-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "692c0b83cc35836b716032f36c8928b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 32272836,
            "upload_time": "2025-10-13T12:28:13",
            "upload_time_iso_8601": "2025-10-13T12:28:13.405154Z",
            "url": "https://files.pythonhosted.org/packages/e3/07/3176e02692d8753a6c4606021c60e4031341afb56292178eee633b6760a4/av-16.0.1-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15c3fd72a0315bc6c943ced1105aaac6e0ec1be57c70d8a616bd05acaa21ffee",
                "md5": "8e4ec71315947fc8f9c13cae2effea96",
                "sha256": "dd2ce779fa0b5f5889a6d9e00fbbbc39f58e247e52d31044272648fe16ff1dbf"
            },
            "downloads": -1,
            "filename": "av-16.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8e4ec71315947fc8f9c13cae2effea96",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 3904030,
            "upload_time": "2025-10-13T12:28:51",
            "upload_time_iso_8601": "2025-10-13T12:28:51.082326Z",
            "url": "https://files.pythonhosted.org/packages/15/c3/fd72a0315bc6c943ced1105aaac6e0ec1be57c70d8a616bd05acaa21ffee/av-16.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-13 12:28:51",
    "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"
}
        
Elapsed time: 8.78779s