av


Nameav JSON
Version 14.1.0 PyPI version JSON
download
home_pagehttps://github.com/PyAV-Org/PyAV
SummaryPythonic bindings for FFmpeg's libraries.
upload_time2025-01-25 20:48:55
maintainerNone
docs_urlNone
authorMike Boers
requires_python>=3.9
licenseBSD
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/c1/8c/8551a53c713424aff5ae1600f17f7407e64761d4eca8854013ee15f2c090/av-14.1.0.tar.gz",
    "platform": null,
    "description": "PyAV\n====\n\nPyAV is a Pythonic binding for the [FFmpeg][ffmpeg] libraries. We aim to provide all of the power and control of the underlying library, but manage the gritty details as much as possible.\n\n---\n\n[![GitHub Test Status][github-tests-badge]][github-tests] [![Documentation][docs-badge]][docs] [![Python Package Index][pypi-badge]][pypi] [![Conda Forge][conda-badge]][conda]\n\nPyAV is for direct and precise access to your media via containers, streams, packets, codecs, and frames. It exposes a few transformations of that data, and helps you get your data to/from other packages (e.g. Numpy and Pillow).\n\nThis power does come with some responsibility as working with media is horrendously complicated and PyAV can't abstract it away or make all the best decisions for you. If the `ffmpeg` command does the job without you bending over backwards, PyAV is likely going to be more of a hindrance than a help.\n\nBut where you can't work without it, PyAV is a critical tool.\n\n\nInstallation\n------------\n\nDue to the complexity of the dependencies, PyAV is not always the easiest Python package to install from source. Since release 8.0.0 binary wheels are provided on [PyPI][pypi] for Linux, Mac and Windows linked against a modern FFmpeg. You can install these wheels by running:\n\n```bash\npip install av\n```\n\nIf you want to use your existing FFmpeg, the source version of PyAV is on [PyPI][pypi] too:\n\n```bash\npip install av --no-binary av\n```\n\nInstalling from source is not supported on Windows.\n\nAlternative installation methods\n--------------------------------\n\nAnother way of installing PyAV is via [conda-forge][conda-forge]:\n\n```bash\nconda install av -c conda-forge\n```\n\nSee the [Conda install][conda-install] docs to get started with (mini)Conda.\n\nAnd if you want to build from the absolute source (POSIX only):\n\n```bash\ngit clone https://github.com/PyAV-Org/PyAV.git\ncd PyAV\nsource scripts/activate.sh\n\n# Build ffmpeg from source. You can skip this step\n# if ffmpeg is already installed.\n./scripts/build-deps\n\n# Build PyAV\nmake\n\n# Testing\nmake test\n\n# Install globally\ndeactivate\npip install .\n```\n\n---\n\nHave fun, [read the docs][docs], [come chat with us][discuss], and good luck!\n\n\n\n[conda-badge]: https://img.shields.io/conda/vn/conda-forge/av.svg?colorB=CCB39A\n[conda]: https://anaconda.org/conda-forge/av\n[docs-badge]: https://img.shields.io/badge/docs-on%20pyav.basswood--io.com-blue.svg\n[docs]: https://pyav.basswood-io.com\n[pypi-badge]: https://img.shields.io/pypi/v/av.svg?colorB=CCB39A\n[pypi]: https://pypi.org/project/av\n[discuss]: https://github.com/PyAV-Org/PyAV/discussions\n\n[github-tests-badge]: https://github.com/PyAV-Org/PyAV/workflows/tests/badge.svg\n[github-tests]: https://github.com/PyAV-Org/PyAV/actions?workflow=tests\n[github]: https://github.com/PyAV-Org/PyAV\n\n[ffmpeg]: https://ffmpeg.org/\n[conda-forge]: https://conda-forge.github.io/\n[conda-install]: https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Pythonic bindings for FFmpeg's libraries.",
    "version": "14.1.0",
    "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": null,
            "digests": {
                "blake2b_256": "cd851c333dce8dcfdaaa56b71453a80d9973b9c10104b356a65b69795b4097b5",
                "md5": "dba43e464ed8343f777cb04a6325a1cc",
                "sha256": "cab602785d583c9ef948da1cca0c2bba9baaf27aa6bd6acaa740599b4a99653e"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dba43e464ed8343f777cb04a6325a1cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 22096424,
            "upload_time": "2025-01-25T20:46:15",
            "upload_time_iso_8601": "2025-01-25T20:46:15.326759Z",
            "url": "https://files.pythonhosted.org/packages/cd/85/1c333dce8dcfdaaa56b71453a80d9973b9c10104b356a65b69795b4097b5/av-14.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c162746757d89ec8f31612cd0606b765577c48a10c1bc3a5ae45cb81dcf5fb95",
                "md5": "471e3da3de140a280bf6e1c1b457ac18",
                "sha256": "fe00d6dfd712e3b66ec619ff1bae38c6b07181fc2ccae832922afcea18198f6f"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "471e3da3de140a280bf6e1c1b457ac18",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 27481312,
            "upload_time": "2025-01-25T20:46:21",
            "upload_time_iso_8601": "2025-01-25T20:46:21.440391Z",
            "url": "https://files.pythonhosted.org/packages/c1/62/746757d89ec8f31612cd0606b765577c48a10c1bc3a5ae45cb81dcf5fb95/av-14.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac274b48a589f63ed80d8da94e8ffd5ea1fba52a761d7a93a5c0aa90dacc8c01",
                "md5": "eb627e770e569725cf1f202880538b12",
                "sha256": "a5de01b2352253fdcbc56bbd065191124f65316bd4fa799b5c519ba9228b665b"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb627e770e569725cf1f202880538b12",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 36463052,
            "upload_time": "2025-01-25T20:46:26",
            "upload_time_iso_8601": "2025-01-25T20:46:26.982888Z",
            "url": "https://files.pythonhosted.org/packages/ac/27/4b48a589f63ed80d8da94e8ffd5ea1fba52a761d7a93a5c0aa90dacc8c01/av-14.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58192b8492e8cfa57a471a2ea8ee2e8c5f822f3d3833d13d73ceab8b410125d8",
                "md5": "d73eee6685cc9eb9177fed30b6b2a049",
                "sha256": "bd496ece3dd1dae6b3e633ffc9c723a839f84288289e803ef80df69d2d52ec99"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d73eee6685cc9eb9177fed30b6b2a049",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 34858085,
            "upload_time": "2025-01-25T20:46:32",
            "upload_time_iso_8601": "2025-01-25T20:46:32.986129Z",
            "url": "https://files.pythonhosted.org/packages/58/19/2b8492e8cfa57a471a2ea8ee2e8c5f822f3d3833d13d73ceab8b410125d8/av-14.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ddecf85ed93c29c8e5f2a2a8c66eb868820bd171767d4caa3b67f24c481fa271",
                "md5": "a8ef9eab9be2c4d07586614c0d29f757",
                "sha256": "2f31d25c617f4501b82daa2b2c2329ac985c35afb15b5701da1d99733a7a391b"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8ef9eab9be2c4d07586614c0d29f757",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 38673687,
            "upload_time": "2025-01-25T20:46:39",
            "upload_time_iso_8601": "2025-01-25T20:46:39.165170Z",
            "url": "https://files.pythonhosted.org/packages/dd/ec/f85ed93c29c8e5f2a2a8c66eb868820bd171767d4caa3b67f24c481fa271/av-14.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93c8f670c61b12efbdf413d8b873ac9a20e96fbef7959d34646b37b71821d1bf",
                "md5": "413240433d6c321f9d5dd5367df11d86",
                "sha256": "9d53f064f9b07023bffe9e7b87083afe734923970ebe6ac74c33928533303159"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "413240433d6c321f9d5dd5367df11d86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 30618754,
            "upload_time": "2025-01-25T20:46:44",
            "upload_time_iso_8601": "2025-01-25T20:46:44.975203Z",
            "url": "https://files.pythonhosted.org/packages/93/c8/f670c61b12efbdf413d8b873ac9a20e96fbef7959d34646b37b71821d1bf/av-14.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc411a0a6ba1290d0830af8b785702602acf1898e5b91bfa2efbbb66ee974fd9",
                "md5": "cefeebd2a0bba62dd5e2ea087848c0c3",
                "sha256": "29168d9ebf43c389c920731fc360f75c96fb351b2bbde04f697f29151beabcfb"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cefeebd2a0bba62dd5e2ea087848c0c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 22088248,
            "upload_time": "2025-01-25T20:46:48",
            "upload_time_iso_8601": "2025-01-25T20:46:48.926425Z",
            "url": "https://files.pythonhosted.org/packages/fc/41/1a0a6ba1290d0830af8b785702602acf1898e5b91bfa2efbbb66ee974fd9/av-14.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0e86035e2094a0661545dae5d8f8f7dbb2ee4299bd248d28d2edd5cc5b6fa85",
                "md5": "4ceeeb2bf35f60d09edbfb1321fd2567",
                "sha256": "1779595be0c6aa6355ce486ace5bb8dd43225b4ab6d6e43819f647a132201646"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ceeeb2bf35f60d09edbfb1321fd2567",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 27474801,
            "upload_time": "2025-01-25T20:46:53",
            "upload_time_iso_8601": "2025-01-25T20:46:53.038352Z",
            "url": "https://files.pythonhosted.org/packages/b0/e8/6035e2094a0661545dae5d8f8f7dbb2ee4299bd248d28d2edd5cc5b6fa85/av-14.1.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e67ff9baab3bb3b21f09bb9841bf8f0e6262e9f7430fa7f1adc163db2ca5570",
                "md5": "2cc6366e47cacd94f46b8877b8310ce0",
                "sha256": "3a12e0fd154e1cc792b687c332c2f853c4829223bfd2c3dd7995e98d4cb5c3c3"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2cc6366e47cacd94f46b8877b8310ce0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 37354869,
            "upload_time": "2025-01-25T20:46:58",
            "upload_time_iso_8601": "2025-01-25T20:46:58.414136Z",
            "url": "https://files.pythonhosted.org/packages/0e/67/ff9baab3bb3b21f09bb9841bf8f0e6262e9f7430fa7f1adc163db2ca5570/av-14.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59a20fa3f5dfd5237f9e705840e33836cde5eddbb90093ee71d2336ff42236c9",
                "md5": "b57de88173470bc4f8a92afed41b87b0",
                "sha256": "00cf0dcb4329fe3b80c3bbb579e851a3d7fa5018cea8c96c847c835b586504fa"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b57de88173470bc4f8a92afed41b87b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 35651455,
            "upload_time": "2025-01-25T20:47:05",
            "upload_time_iso_8601": "2025-01-25T20:47:05.054596Z",
            "url": "https://files.pythonhosted.org/packages/59/a2/0fa3f5dfd5237f9e705840e33836cde5eddbb90093ee71d2336ff42236c9/av-14.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c78d4f938f66ae2d9256773f478c4bbb6e6e88da87e330607472cd84211c4304",
                "md5": "a45bfa8a97f508bdbbaf1fa005f97824",
                "sha256": "249b8104fbd7671a0f4c67e168ad92fbb3e2695a55b25015f33e8f7031efc0a4"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a45bfa8a97f508bdbbaf1fa005f97824",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 39545613,
            "upload_time": "2025-01-25T20:47:11",
            "upload_time_iso_8601": "2025-01-25T20:47:11.045598Z",
            "url": "https://files.pythonhosted.org/packages/c7/8d/4f938f66ae2d9256773f478c4bbb6e6e88da87e330607472cd84211c4304/av-14.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b437d59012ab2a7c3b112d6f00809c880d4e017a176dd8fd102d11fdd613022",
                "md5": "38dfb756c3dcced8666593fa50d5920f",
                "sha256": "242a2ce86be8c6d34538ce987c3acc742b69205422850d8091bc640d4adf4aa9"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "38dfb756c3dcced8666593fa50d5920f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 30620888,
            "upload_time": "2025-01-25T20:47:16",
            "upload_time_iso_8601": "2025-01-25T20:47:16.655454Z",
            "url": "https://files.pythonhosted.org/packages/0b/43/7d59012ab2a7c3b112d6f00809c880d4e017a176dd8fd102d11fdd613022/av-14.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d03f9fb6a691f52a38917330d7025690445db1aff3eff5887852a44a0728511d",
                "md5": "3e5c08d88629986c885cba64a938856b",
                "sha256": "d2ca492e369b5628c8a1fc6889c1ac1f66ec8e4b99d2cc2633e7eaf4d2c82e66"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3e5c08d88629986c885cba64a938856b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 22093254,
            "upload_time": "2025-01-25T20:47:20",
            "upload_time_iso_8601": "2025-01-25T20:47:20.718474Z",
            "url": "https://files.pythonhosted.org/packages/d0/3f/9fb6a691f52a38917330d7025690445db1aff3eff5887852a44a0728511d/av-14.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af08b1de0d440e73b3dfd117cedd2dcbb81eabe601da4ea84aa12d66bc9b3716",
                "md5": "4da976933ee0dc6ededd7b5f4e38a29b",
                "sha256": "8bf8db92bd986e3278b93bd7ca187bf753bb56d63a0015160fe1d3bba69f30e7"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4da976933ee0dc6ededd7b5f4e38a29b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 27487693,
            "upload_time": "2025-01-25T20:47:25",
            "upload_time_iso_8601": "2025-01-25T20:47:25.507999Z",
            "url": "https://files.pythonhosted.org/packages/af/08/b1de0d440e73b3dfd117cedd2dcbb81eabe601da4ea84aa12d66bc9b3716/av-14.1.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71e136ef30c21c115256fd4d3bc98ed9233060ec05b2bb6ac265bf526dd84447",
                "md5": "2435a4d3a0dd8b8da30726cb51e30a35",
                "sha256": "c5fdaf28c0d2efd19de06cbcf6c58db6ce4e6bafdda47df88f287fd5f616532f"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2435a4d3a0dd8b8da30726cb51e30a35",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 37601884,
            "upload_time": "2025-01-25T20:47:31",
            "upload_time_iso_8601": "2025-01-25T20:47:31.360818Z",
            "url": "https://files.pythonhosted.org/packages/71/e1/36ef30c21c115256fd4d3bc98ed9233060ec05b2bb6ac265bf526dd84447/av-14.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "930a7537c0076f68237dcf158f6fea0838b7e3825214993daf9854a2f5c36036",
                "md5": "d48ad698e79b5ae79fb2522a3511023e",
                "sha256": "f9bb976fd83ee720d0aa75725fb73616d5249ec275a7ac79dc3a0f6e4f8cc60c"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d48ad698e79b5ae79fb2522a3511023e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 35924125,
            "upload_time": "2025-01-25T20:47:37",
            "upload_time_iso_8601": "2025-01-25T20:47:37.595652Z",
            "url": "https://files.pythonhosted.org/packages/93/0a/7537c0076f68237dcf158f6fea0838b7e3825214993daf9854a2f5c36036/av-14.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec2e1f9b6ab22d75e07070fb2ddffecebefdfbc2e3306609d4e2b288f0f9d9b1",
                "md5": "18f6176f3fe1ba0ce22f14f316ac8ea3",
                "sha256": "a258a03e3f5d19ce599281968402ad5e799cdc0a84f53fe47ac01b27bb61e62a"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18f6176f3fe1ba0ce22f14f316ac8ea3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 39889204,
            "upload_time": "2025-01-25T20:47:42",
            "upload_time_iso_8601": "2025-01-25T20:47:42.715340Z",
            "url": "https://files.pythonhosted.org/packages/ec/2e/1f9b6ab22d75e07070fb2ddffecebefdfbc2e3306609d4e2b288f0f9d9b1/av-14.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9a189398ede8f5c0648caf84a14dc26ba6e833fc02578dd2b869d9eb549ab12",
                "md5": "ebadaba025d6c96a0cd0784fed18760a",
                "sha256": "49cb87b7c49c0a655928e313d00173c2b25f2f2e33f0ca433c32ccbb4f722679"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ebadaba025d6c96a0cd0784fed18760a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 30624267,
            "upload_time": "2025-01-25T20:47:47",
            "upload_time_iso_8601": "2025-01-25T20:47:47.812712Z",
            "url": "https://files.pythonhosted.org/packages/a9/a1/89398ede8f5c0648caf84a14dc26ba6e833fc02578dd2b869d9eb549ab12/av-14.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f91e8643dee1647e7714dc2e34ab8717203037080f3a37a9f82c5a8efc180a24",
                "md5": "134986eb6e9c92880875e9adb1c48ad1",
                "sha256": "012fb4d08576432b155a8da8d2012a40fb7d7efa63bf117d669ea06ec75cb9a7"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "134986eb6e9c92880875e9adb1c48ad1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 22052107,
            "upload_time": "2025-01-25T20:47:52",
            "upload_time_iso_8601": "2025-01-25T20:47:52.647561Z",
            "url": "https://files.pythonhosted.org/packages/f9/1e/8643dee1647e7714dc2e34ab8717203037080f3a37a9f82c5a8efc180a24/av-14.1.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b3f2ff3a1f580df369157029029992cce59f826042e02448613083f9f530137",
                "md5": "eba830388b24c6f03d96431ff32c476e",
                "sha256": "6ac867ab34b9cfbf3ccdd3f497aaddcbb04cb34f17cf710c8db60cae8d7f1ad7"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp313-cp313-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eba830388b24c6f03d96431ff32c476e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 27445950,
            "upload_time": "2025-01-25T20:47:57",
            "upload_time_iso_8601": "2025-01-25T20:47:57.852255Z",
            "url": "https://files.pythonhosted.org/packages/2b/3f/2ff3a1f580df369157029029992cce59f826042e02448613083f9f530137/av-14.1.0-cp313-cp313-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "faf897eb396a2fbd8af26ff73240a2b0b68a848766958847c99c06d5167dabc0",
                "md5": "c7f875f879eb1516dd3638a133fd21b1",
                "sha256": "5a251c73ed28e8b172b5b67117e0248c4d81526ee8ab1d4792f2060c0114b846"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c7f875f879eb1516dd3638a133fd21b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 37242905,
            "upload_time": "2025-01-25T20:48:04",
            "upload_time_iso_8601": "2025-01-25T20:48:04.255124Z",
            "url": "https://files.pythonhosted.org/packages/fa/f8/97eb396a2fbd8af26ff73240a2b0b68a848766958847c99c06d5167dabc0/av-14.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "998b71e2e6c943f4a784d675190d8be9df531026989259a36aae7b1049771079",
                "md5": "ff89fccb73f2c929249cb9cae1dd9f44",
                "sha256": "f110133c762f310e03f101986ca16f81c5bda80a839969dddeb0c400f8a73c8d"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ff89fccb73f2c929249cb9cae1dd9f44",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 35578890,
            "upload_time": "2025-01-25T20:48:09",
            "upload_time_iso_8601": "2025-01-25T20:48:09.459135Z",
            "url": "https://files.pythonhosted.org/packages/99/8b/71e2e6c943f4a784d675190d8be9df531026989259a36aae7b1049771079/av-14.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8f8e888e7a583e2dbe12bb710ae4474e189b86b399cdb380ab1e9a311cd9959",
                "md5": "7ad680221b6f28f3a4e1a538a74ca934",
                "sha256": "222303728d59edfbc241d7e944d5479d3bdfe98d33574a5e60aa7a23d54568fa"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ad680221b6f28f3a4e1a538a74ca934",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 39539552,
            "upload_time": "2025-01-25T20:48:15",
            "upload_time_iso_8601": "2025-01-25T20:48:15.614509Z",
            "url": "https://files.pythonhosted.org/packages/a8/f8/e888e7a583e2dbe12bb710ae4474e189b86b399cdb380ab1e9a311cd9959/av-14.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d6aa111a144ca52b67e0553437185f081cbe62bec0d7211ff38d33665985ff5",
                "md5": "b014b0a7b94ebe705977fd02e4cf86a3",
                "sha256": "f59d91f2dad90683db55c66e98113bb28a87f4e113eec103756d51ad05db3d8a"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b014b0a7b94ebe705977fd02e4cf86a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 30595292,
            "upload_time": "2025-01-25T20:48:20",
            "upload_time_iso_8601": "2025-01-25T20:48:20.534642Z",
            "url": "https://files.pythonhosted.org/packages/3d/6a/a111a144ca52b67e0553437185f081cbe62bec0d7211ff38d33665985ff5/av-14.1.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbc0346be106f8f70ce5d692396f380f37a44aeb1f963e7f3c638a9094c54aca",
                "md5": "c34b1fbb3b8104d433fb1bc54dcbdf8f",
                "sha256": "c4c758019904a9044007378626e0460882d951b8b8254a194e2de0d34a704048"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c34b1fbb3b8104d433fb1bc54dcbdf8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 22124393,
            "upload_time": "2025-01-25T20:48:24",
            "upload_time_iso_8601": "2025-01-25T20:48:24.518445Z",
            "url": "https://files.pythonhosted.org/packages/cb/c0/346be106f8f70ce5d692396f380f37a44aeb1f963e7f3c638a9094c54aca/av-14.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5a1accbd7951207f8c291c4cc638e5c5dee0fb1bd436835319be0c4fdae6631",
                "md5": "912624b77ca313b1037129725e0c020b",
                "sha256": "82625c968d03d3e5165620493ec0871b69eda0308e6472156099aa84e542406e"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "912624b77ca313b1037129725e0c020b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 27510780,
            "upload_time": "2025-01-25T20:48:29",
            "upload_time_iso_8601": "2025-01-25T20:48:29.342232Z",
            "url": "https://files.pythonhosted.org/packages/f5/a1/accbd7951207f8c291c4cc638e5c5dee0fb1bd436835319be0c4fdae6631/av-14.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "820999cb4227c19db7732df82632ea607c41ad79800c90a99b834bd98ab0a8a0",
                "md5": "8beefc1f47c04d40cb2406a470d6c01a",
                "sha256": "c07136ab70bc1646062aa57446e1b27b464e61afbf3f3c5c1a8fa67bf3a07cae"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8beefc1f47c04d40cb2406a470d6c01a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 36615579,
            "upload_time": "2025-01-25T20:48:34",
            "upload_time_iso_8601": "2025-01-25T20:48:34.988231Z",
            "url": "https://files.pythonhosted.org/packages/82/09/99cb4227c19db7732df82632ea607c41ad79800c90a99b834bd98ab0a8a0/av-14.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d442413e111e7671ad2f974b56c5f4d33cb2f25cfdd15ff7a4b07582716734cc",
                "md5": "e96d87b580434146f84192c841a6a969",
                "sha256": "53a71fe7412e3b217bdaf6e2f1d9929350e8195868f210b1a7ea00df00f83ec7"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e96d87b580434146f84192c841a6a969",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 35002060,
            "upload_time": "2025-01-25T20:48:41",
            "upload_time_iso_8601": "2025-01-25T20:48:41.154017Z",
            "url": "https://files.pythonhosted.org/packages/d4/42/413e111e7671ad2f974b56c5f4d33cb2f25cfdd15ff7a4b07582716734cc/av-14.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bfdc105ec72687cf5c05a59d01f5485c9bc10767279abe857498081ab53a9a1",
                "md5": "05610226de5b33b4214e75341e93414b",
                "sha256": "c3fe46999b316c480e2669a457fd44ec46b9f992bdc601e42c4a2dae921230ae"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05610226de5b33b4214e75341e93414b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 38818977,
            "upload_time": "2025-01-25T20:48:47",
            "upload_time_iso_8601": "2025-01-25T20:48:47.336921Z",
            "url": "https://files.pythonhosted.org/packages/5b/fd/c105ec72687cf5c05a59d01f5485c9bc10767279abe857498081ab53a9a1/av-14.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e107412bd465911d2065037765a02a682ea099b8a2f4876e0f3a3f616851fb51",
                "md5": "92029a5ffaeb1cfe0da1cf9031b0021d",
                "sha256": "7cebd5049f5854d7708530df7bb15d45b3842e4311ada467dadd7dc4bf0e9f34"
            },
            "downloads": -1,
            "filename": "av-14.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "92029a5ffaeb1cfe0da1cf9031b0021d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 30642851,
            "upload_time": "2025-01-25T20:48:52",
            "upload_time_iso_8601": "2025-01-25T20:48:52.454458Z",
            "url": "https://files.pythonhosted.org/packages/e1/07/412bd465911d2065037765a02a682ea099b8a2f4876e0f3a3f616851fb51/av-14.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c18c8551a53c713424aff5ae1600f17f7407e64761d4eca8854013ee15f2c090",
                "md5": "540e35d164b0326e797d8453028e1a61",
                "sha256": "81a0185af0237016049c2b1560d51d5895ef56763ea7ebab939baa7b6b87e6f7"
            },
            "downloads": -1,
            "filename": "av-14.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "540e35d164b0326e797d8453028e1a61",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 4049387,
            "upload_time": "2025-01-25T20:48:55",
            "upload_time_iso_8601": "2025-01-25T20:48:55.512115Z",
            "url": "https://files.pythonhosted.org/packages/c1/8c/8551a53c713424aff5ae1600f17f7407e64761d4eca8854013ee15f2c090/av-14.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-25 20:48:55",
    "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: 0.41158s