ffmpeg-progress-yield


Nameffmpeg-progress-yield JSON
Version 1.0.3 PyPI version JSON
download
home_pageNone
SummaryRun an ffmpeg command with progress
upload_time2025-09-01 07:17:38
maintainerNone
docs_urlNone
authorWerner Robitza
requires_python>=3.9
licenseNone
keywords ffmpeg
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ffmpeg-progress-yield
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->

[![PyPI version](https://img.shields.io/pypi/v/ffmpeg-progress-yield.svg)](https://pypi.org/project/ffmpeg-progress-yield) [![Python package](https://github.com/slhck/ffmpeg-progress-yield/actions/workflows/python-package.yml/badge.svg)](https://github.com/slhck/ffmpeg-progress-yield/actions/workflows/python-package.yml)

Run an ffmpeg command with its progress yielded.

![](ffmpeg-progress-yield.gif)

Contents:

- [Requirements](#requirements)
- [Installation](#installation)
- [Usage](#usage)
  - [As a library](#as-a-library)
  - [On the command line](#on-the-command-line)
- [Caveats](#caveats)
- [Contributors](#contributors)
- [License](#license)

-------------

## Requirements

- Python 3.9 or higher
- ffmpeg v3.1 or above from <http://ffmpeg.org/> installed in your \$PATH

## Installation

If you want to use the CLI only, via [uv](https://docs.astral.sh/uv/getting-started/installation/):

```bash
uvx ffmpeg-progress-yield
```

Or install via [pipx](https://pipx.pypa.io/latest/installation/).

To install the library:

```bash
pip3 install --user ffmpeg-progress-yield
```

## Usage

### As a library

In your Python project, import the helper class, instantiate a context manager, and run `run_command_with_progress`.

For more information see the [API documentation](https://htmlpreview.github.io/?https://github.com/slhck/ffmpeg-progress-yield/blob/master/docs/ffmpeg_progress_yield.html).

Example:

```python
from ffmpeg_progress_yield import FfmpegProgress

cmd = [
    "ffmpeg", "-i", "test/test.mp4", "-c:v", "libx264", "-vf", "scale=1920x1080", "-preset", "fast", "-f", "null", "/dev/null",
]

with FfmpegProgress(cmd) as ff:
    for progress in ff.run_command_with_progress():
        print(f"{progress}/100")
```

The command will yield the current progress in percent as a float number.

`run_command_with_progress` takes a `duration_override` argument where you can manually override the duration of the command in seconds. This is useful if your input doesn't have an implicit duration (e.g. if you use `testsrc`).

If you have `tqdm` installed, you can create a fancy progress bar:

```python
from tqdm import tqdm
from ffmpeg_progress_yield import FfmpegProgress

cmd = [
    "ffmpeg", "-i", "test/test.mp4", "-c:v", "libx264", "-vf", "scale=1920x1080", "-preset", "fast", "-f", "null", "/dev/null",
]

with FfmpegProgress(cmd) as ff:
    with tqdm(total=100, position=1, desc="Test") as pbar:
        for progress in ff.run_command_with_progress():
            pbar.update(progress - pbar.n)

    # get the output
    print(ff.stderr)
```

You can also quit the command early on by calling `.quit()`:

```python
with FfmpegProgress(cmd) as ff:
    for progress in ff.run_command_with_progress():
        if progress > 50:
            ff.quit()
            break
```

This will send a hard quit to the ffmpeg process, and may not wait for it to finish. Your encoded file may have truncated data. To quit gracefully, use `.quit_gracefully()` instead, which sends 'q' to the ffmpeg process, and waits for it to finish (e.g., wait for an encoder to flush its buffers).

This is probably most useful in asynchronous environments, where you can run the command in a separate thread, and quit it from the main thread (e.g. using a [Condition Variable](https://docs.python.org/3/library/threading.html#threading.Condition)).

#### Process Cleanup and Context Manager Support

The library automatically handles process cleanup to prevent lingering ffmpeg processes. It provides multiple layers of safety:

1. **Automatic cleanup**: Processes are automatically cleaned up even if exceptions occur during iteration
2. **Context manager support**: Use `with` statements for guaranteed cleanup
3. **Finalizer fallback**: Processes are cleaned up during garbage collection as a last resort

### On the command line

Simply prefix your ffmpeg command with `ffmpeg-progress-yield`:

```bash
ffmpeg-progress-yield ffmpeg -i input.mp4 output.mp4
```

It will show a progress bar, and once the command is done, show the ffmpeg stderr output.

Full usage notes:

```
usage: ffmpeg-progress-yield [-h] [-d DURATION] [-n] [-p] [-x] [-l LOG_FILE] ...

ffmpeg-progress-yield v0.12.0

positional arguments:
  ffmpeg_command        Any ffmpeg command. Do not quote this argument.

options:
  -h, --help            show this help message and exit
  -d, --duration DURATION
                        Duration of the video in seconds (override). (default: None)
  -n, --dry-run         Print ffmpeg command and exit. (default: False)
  -p, --progress-only   Print progress only and do not print stderr at exit. (default: False)
  -x, --exclude-progress
                        Exclude progress lines from ffmpeg log. (default: False)
  -l, --log-file LOG_FILE
                        Send ffmpeg log output to specified file. (default: None)
```

#### Duration override

If you want to manually override the duration to, say, 12.5 seconds (e.g. because your input doesn't have an implicit one):

```bash
ffmpeg-progress-yield --duration 12.5 ffmpeg -f lavfi -i testsrc -t 12.5 output.mp4
```

#### Exclude progress from the CLI

You can also redirect the output to a log file:

```bash
ffmpeg-progress-yield --exclude-progress --log-file log.txt ffmpeg -i input.mp4 output.mp4
```

This will exclude the progress bar from the output, and redirect it to a log file.

## Caveats

Currently, we do not differentiate between `stderr` and `stdout`. This means progress will be mixed with the ffmpeg log, unless you use `--exclude-progress` (or `exclude_progress` in the Python API).

You can also check out [`ffmpeg-progress`](https://github.com/Tatsh/ffmpeg-progress) for a similar project with a different feature set.

## Contributors

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
  <tbody>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="http://slhck.info/"><img src="https://avatars.githubusercontent.com/u/582444?v=4?s=100" width="100px;" alt="Werner Robitza"/><br /><sub><b>Werner Robitza</b></sub></a><br /><a href="https://github.com/slhck/ffmpeg-progress-yield/commits?author=slhck" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/WyattBlue"><img src="https://avatars.githubusercontent.com/u/57511737?v=4?s=100" width="100px;" alt="WyattBlue"/><br /><sub><b>WyattBlue</b></sub></a><br /><a href="https://github.com/slhck/ffmpeg-progress-yield/commits?author=WyattBlue" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/kskadart"><img src="https://avatars.githubusercontent.com/u/120260513?v=4?s=100" width="100px;" alt="Kirill Konovalov"/><br /><sub><b>Kirill Konovalov</b></sub></a><br /><a href="https://github.com/slhck/ffmpeg-progress-yield/commits?author=kskadart" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/ammgws"><img src="https://avatars.githubusercontent.com/u/20397027?v=4?s=100" width="100px;" alt="Jason Nader"/><br /><sub><b>Jason Nader</b></sub></a><br /><a href="https://github.com/slhck/ffmpeg-progress-yield/issues?q=author%3Aammgws" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/LaunchLee"><img src="https://avatars.githubusercontent.com/u/80872691?v=4?s=100" width="100px;" alt="Launch Lee"/><br /><sub><b>Launch Lee</b></sub></a><br /><a href="https://github.com/slhck/ffmpeg-progress-yield/commits?author=LaunchLee" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/scufre"><img src="https://avatars.githubusercontent.com/u/21089866?v=4?s=100" width="100px;" alt="scufre"/><br /><sub><b>scufre</b></sub></a><br /><a href="https://github.com/slhck/ffmpeg-progress-yield/commits?author=scufre" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/AlexanderS"><img src="https://avatars.githubusercontent.com/u/149450?v=4?s=100" width="100px;" alt="Alexander Sulfrian"/><br /><sub><b>Alexander Sulfrian</b></sub></a><br /><a href="https://github.com/slhck/ffmpeg-progress-yield/commits?author=AlexanderS" title="Code">💻</a></td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td align="center" size="13px" colspan="7">
        <img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
          <a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
        </img>
      </td>
    </tr>
  </tfoot>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

## License

The MIT License (MIT)

Copyright (c) 2021-2025 Werner Robitza

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "ffmpeg-progress-yield",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "ffmpeg",
    "author": "Werner Robitza",
    "author_email": "Werner Robitza <werner.robitza@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/a6/25/90c4439e11411402080718167121f717da453b48881feb0c615005102d59/ffmpeg_progress_yield-1.0.3.tar.gz",
    "platform": null,
    "description": "# ffmpeg-progress-yield\n<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->\n[![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#contributors-)\n<!-- ALL-CONTRIBUTORS-BADGE:END -->\n\n[![PyPI version](https://img.shields.io/pypi/v/ffmpeg-progress-yield.svg)](https://pypi.org/project/ffmpeg-progress-yield) [![Python package](https://github.com/slhck/ffmpeg-progress-yield/actions/workflows/python-package.yml/badge.svg)](https://github.com/slhck/ffmpeg-progress-yield/actions/workflows/python-package.yml)\n\nRun an ffmpeg command with its progress yielded.\n\n![](ffmpeg-progress-yield.gif)\n\nContents:\n\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Usage](#usage)\n  - [As a library](#as-a-library)\n  - [On the command line](#on-the-command-line)\n- [Caveats](#caveats)\n- [Contributors](#contributors)\n- [License](#license)\n\n-------------\n\n## Requirements\n\n- Python 3.9 or higher\n- ffmpeg v3.1 or above from <http://ffmpeg.org/> installed in your \\$PATH\n\n## Installation\n\nIf you want to use the CLI only, via [uv](https://docs.astral.sh/uv/getting-started/installation/):\n\n```bash\nuvx ffmpeg-progress-yield\n```\n\nOr install via [pipx](https://pipx.pypa.io/latest/installation/).\n\nTo install the library:\n\n```bash\npip3 install --user ffmpeg-progress-yield\n```\n\n## Usage\n\n### As a library\n\nIn your Python project, import the helper class, instantiate a context manager, and run `run_command_with_progress`.\n\nFor more information see the [API documentation](https://htmlpreview.github.io/?https://github.com/slhck/ffmpeg-progress-yield/blob/master/docs/ffmpeg_progress_yield.html).\n\nExample:\n\n```python\nfrom ffmpeg_progress_yield import FfmpegProgress\n\ncmd = [\n    \"ffmpeg\", \"-i\", \"test/test.mp4\", \"-c:v\", \"libx264\", \"-vf\", \"scale=1920x1080\", \"-preset\", \"fast\", \"-f\", \"null\", \"/dev/null\",\n]\n\nwith FfmpegProgress(cmd) as ff:\n    for progress in ff.run_command_with_progress():\n        print(f\"{progress}/100\")\n```\n\nThe command will yield the current progress in percent as a float number.\n\n`run_command_with_progress` takes a `duration_override` argument where you can manually override the duration of the command in seconds. This is useful if your input doesn't have an implicit duration (e.g. if you use `testsrc`).\n\nIf you have `tqdm` installed, you can create a fancy progress bar:\n\n```python\nfrom tqdm import tqdm\nfrom ffmpeg_progress_yield import FfmpegProgress\n\ncmd = [\n    \"ffmpeg\", \"-i\", \"test/test.mp4\", \"-c:v\", \"libx264\", \"-vf\", \"scale=1920x1080\", \"-preset\", \"fast\", \"-f\", \"null\", \"/dev/null\",\n]\n\nwith FfmpegProgress(cmd) as ff:\n    with tqdm(total=100, position=1, desc=\"Test\") as pbar:\n        for progress in ff.run_command_with_progress():\n            pbar.update(progress - pbar.n)\n\n    # get the output\n    print(ff.stderr)\n```\n\nYou can also quit the command early on by calling `.quit()`:\n\n```python\nwith FfmpegProgress(cmd) as ff:\n    for progress in ff.run_command_with_progress():\n        if progress > 50:\n            ff.quit()\n            break\n```\n\nThis will send a hard quit to the ffmpeg process, and may not wait for it to finish. Your encoded file may have truncated data. To quit gracefully, use `.quit_gracefully()` instead, which sends 'q' to the ffmpeg process, and waits for it to finish (e.g., wait for an encoder to flush its buffers).\n\nThis is probably most useful in asynchronous environments, where you can run the command in a separate thread, and quit it from the main thread (e.g. using a [Condition Variable](https://docs.python.org/3/library/threading.html#threading.Condition)).\n\n#### Process Cleanup and Context Manager Support\n\nThe library automatically handles process cleanup to prevent lingering ffmpeg processes. It provides multiple layers of safety:\n\n1. **Automatic cleanup**: Processes are automatically cleaned up even if exceptions occur during iteration\n2. **Context manager support**: Use `with` statements for guaranteed cleanup\n3. **Finalizer fallback**: Processes are cleaned up during garbage collection as a last resort\n\n### On the command line\n\nSimply prefix your ffmpeg command with `ffmpeg-progress-yield`:\n\n```bash\nffmpeg-progress-yield ffmpeg -i input.mp4 output.mp4\n```\n\nIt will show a progress bar, and once the command is done, show the ffmpeg stderr output.\n\nFull usage notes:\n\n```\nusage: ffmpeg-progress-yield [-h] [-d DURATION] [-n] [-p] [-x] [-l LOG_FILE] ...\n\nffmpeg-progress-yield v0.12.0\n\npositional arguments:\n  ffmpeg_command        Any ffmpeg command. Do not quote this argument.\n\noptions:\n  -h, --help            show this help message and exit\n  -d, --duration DURATION\n                        Duration of the video in seconds (override). (default: None)\n  -n, --dry-run         Print ffmpeg command and exit. (default: False)\n  -p, --progress-only   Print progress only and do not print stderr at exit. (default: False)\n  -x, --exclude-progress\n                        Exclude progress lines from ffmpeg log. (default: False)\n  -l, --log-file LOG_FILE\n                        Send ffmpeg log output to specified file. (default: None)\n```\n\n#### Duration override\n\nIf you want to manually override the duration to, say, 12.5 seconds (e.g. because your input doesn't have an implicit one):\n\n```bash\nffmpeg-progress-yield --duration 12.5 ffmpeg -f lavfi -i testsrc -t 12.5 output.mp4\n```\n\n#### Exclude progress from the CLI\n\nYou can also redirect the output to a log file:\n\n```bash\nffmpeg-progress-yield --exclude-progress --log-file log.txt ffmpeg -i input.mp4 output.mp4\n```\n\nThis will exclude the progress bar from the output, and redirect it to a log file.\n\n## Caveats\n\nCurrently, we do not differentiate between `stderr` and `stdout`. This means progress will be mixed with the ffmpeg log, unless you use `--exclude-progress` (or `exclude_progress` in the Python API).\n\nYou can also check out [`ffmpeg-progress`](https://github.com/Tatsh/ffmpeg-progress) for a similar project with a different feature set.\n\n## Contributors\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n  <tbody>\n    <tr>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"http://slhck.info/\"><img src=\"https://avatars.githubusercontent.com/u/582444?v=4?s=100\" width=\"100px;\" alt=\"Werner Robitza\"/><br /><sub><b>Werner Robitza</b></sub></a><br /><a href=\"https://github.com/slhck/ffmpeg-progress-yield/commits?author=slhck\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/WyattBlue\"><img src=\"https://avatars.githubusercontent.com/u/57511737?v=4?s=100\" width=\"100px;\" alt=\"WyattBlue\"/><br /><sub><b>WyattBlue</b></sub></a><br /><a href=\"https://github.com/slhck/ffmpeg-progress-yield/commits?author=WyattBlue\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/kskadart\"><img src=\"https://avatars.githubusercontent.com/u/120260513?v=4?s=100\" width=\"100px;\" alt=\"Kirill Konovalov\"/><br /><sub><b>Kirill Konovalov</b></sub></a><br /><a href=\"https://github.com/slhck/ffmpeg-progress-yield/commits?author=kskadart\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/ammgws\"><img src=\"https://avatars.githubusercontent.com/u/20397027?v=4?s=100\" width=\"100px;\" alt=\"Jason Nader\"/><br /><sub><b>Jason Nader</b></sub></a><br /><a href=\"https://github.com/slhck/ffmpeg-progress-yield/issues?q=author%3Aammgws\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/LaunchLee\"><img src=\"https://avatars.githubusercontent.com/u/80872691?v=4?s=100\" width=\"100px;\" alt=\"Launch Lee\"/><br /><sub><b>Launch Lee</b></sub></a><br /><a href=\"https://github.com/slhck/ffmpeg-progress-yield/commits?author=LaunchLee\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/scufre\"><img src=\"https://avatars.githubusercontent.com/u/21089866?v=4?s=100\" width=\"100px;\" alt=\"scufre\"/><br /><sub><b>scufre</b></sub></a><br /><a href=\"https://github.com/slhck/ffmpeg-progress-yield/commits?author=scufre\" title=\"Code\">\ud83d\udcbb</a></td>\n      <td align=\"center\" valign=\"top\" width=\"14.28%\"><a href=\"https://github.com/AlexanderS\"><img src=\"https://avatars.githubusercontent.com/u/149450?v=4?s=100\" width=\"100px;\" alt=\"Alexander Sulfrian\"/><br /><sub><b>Alexander Sulfrian</b></sub></a><br /><a href=\"https://github.com/slhck/ffmpeg-progress-yield/commits?author=AlexanderS\" title=\"Code\">\ud83d\udcbb</a></td>\n    </tr>\n  </tbody>\n  <tfoot>\n    <tr>\n      <td align=\"center\" size=\"13px\" colspan=\"7\">\n        <img src=\"https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg\">\n          <a href=\"https://all-contributors.js.org/docs/en/bot/usage\">Add your contributions</a>\n        </img>\n      </td>\n    </tr>\n  </tfoot>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\n## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2021-2025 Werner Robitza\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Run an ffmpeg command with progress",
    "version": "1.0.3",
    "project_urls": {
        "Homepage": "https://github.com/slhck/ffmpeg-progress-yield",
        "Repository": "https://github.com/slhck/ffmpeg-progress-yield"
    },
    "split_keywords": [
        "ffmpeg"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d30019e14676181bcccaab4c259a9c5ab0b5e063e3ce1b294b7847a26e91c0c",
                "md5": "f75cc9c4cffc01df00942a2d0aefd56c",
                "sha256": "882e53d253c6503843a3288c4d536cf95630d51d5767aa9218302d16ef6c5852"
            },
            "downloads": -1,
            "filename": "ffmpeg_progress_yield-1.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f75cc9c4cffc01df00942a2d0aefd56c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 12484,
            "upload_time": "2025-09-01T07:17:36",
            "upload_time_iso_8601": "2025-09-01T07:17:36.878724Z",
            "url": "https://files.pythonhosted.org/packages/6d/30/019e14676181bcccaab4c259a9c5ab0b5e063e3ce1b294b7847a26e91c0c/ffmpeg_progress_yield-1.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a62590c4439e11411402080718167121f717da453b48881feb0c615005102d59",
                "md5": "c588555e5662affa9c9123e7683ccd4d",
                "sha256": "5cfa5d903bd8a0052f0bdc35ce2bc848851665f7eb193f7dc5ad6df1c09bf860"
            },
            "downloads": -1,
            "filename": "ffmpeg_progress_yield-1.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "c588555e5662affa9c9123e7683ccd4d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 9788,
            "upload_time": "2025-09-01T07:17:38",
            "upload_time_iso_8601": "2025-09-01T07:17:38.136302Z",
            "url": "https://files.pythonhosted.org/packages/a6/25/90c4439e11411402080718167121f717da453b48881feb0c615005102d59/ffmpeg_progress_yield-1.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-01 07:17:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "slhck",
    "github_project": "ffmpeg-progress-yield",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ffmpeg-progress-yield"
}
        
Elapsed time: 2.11876s