Skip to main content

Run an ffmpeg command with progress

Project description

ffmpeg-progress-yield

All Contributors

PyPI version Python package

Run an ffmpeg command with its progress yielded.

Contents:


Requirements

  • Python 3.8 or higher
  • ffmpeg v3.1 or above from http://ffmpeg.org/ installed in your $PATH

Installation

pip3 install ffmpeg-progress-yield

Or download this repository, then run pip install ..

Usage

As a library

In your Python project, import the helper class and run run_command_with_progress.

For more information see the API documentation.

Example:

from ffmpeg_progress_yield import FfmpegProgress

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

ff = FfmpegProgress(cmd)
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:

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",
]

ff = FfmpegProgress(cmd)
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 by calling .quit():

ff = FfmpegProgress(cmd)
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. To quit gracefully, use .quit_gracefully() instead, which sends 'q' to the ffmpeg process, and waits for it to finish.

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).

On the command line

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

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.

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

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

Caveats

Currently, we do not differentiate between stderr and stdout. This means progress will be mixed with the ffmpeg log.

You can also check out ffmpeg-progress for a similar project with a different feature set.

Contributors

Werner Robitza
Werner Robitza

💻
WyattBlue
WyattBlue

💻
Kirill Konovalov
Kirill Konovalov

💻
Add your contributions

License

The MIT License (MIT)

Copyright (c) 2021-2023 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.

Changelog

v0.7.3 (2023-05-05)

  • Update readme.

  • Add progress as percent, fixes #12.

v0.7.2 (2023-03-04)

  • Do not print input information when probing, addresses #10.

v0.7.1 (2023-02-24)

  • Fix types in CI.

  • Remove unneeded import.

  • Typo.

  • Docs: add @kskadart as a contributor.

  • Fix formatting.

  • Fix types.

  • Feat(ffprobe): FEAT-0001 try to get duration by ffprobe in case if loglevel=error.

  • Fix CI file.

v0.7.0 (2023-01-24)

  • Add duration override to API.

  • Remove manifest.in.

  • Add mypy settings.

v0.6.1 (2022-12-18)

  • Add py.typed.

  • Move API docs to existing section.

v0.6.0 (2022-12-17)

  • Link to API docs.

  • Add API docs.

  • Add export.

  • Bump requirements to python 3.8 or higher.

  • Document methods.

  • Remove unused import.

  • Docs: add @WyattBlue as a contributor.

  • Docs: add @slhck as a contributor.

  • Unhide to_ms.

  • Add type hints + simplify.

  • Add python CI badge.

  • Fix quit tests.

  • Add all-contributors.

  • Add pytest to dev requirements.

  • Add github workflows.

  • Formatting.

  • Fix a few type and formatting errors.

v0.5.0 (2022-12-12)

  • Add stderr callback method.

  • Update README.

  • Add graceful quit method.

  • Add a GIF in the readme.

v0.4.0 (2022-12-11)

  • Add a quit method, fixes #4.

v0.3.0 (2022-08-02)

  • Update python requirements.

v0.2.0 (2021-11-21)

  • Add a usage option.

v0.1.2 (2021-08-14)

  • Remove universal_newlines for Windows compat.

v0.1.1 (2021-07-01)

  • Remove stats_period option for backwards compatibility, fixes #2.

v0.1.0 (2021-06-30)

  • Format code with black.

  • Yield 0 in progress and improve logic.

  • Set universal_newlines to true and add kwargs support.

  • Increase stats period.

  • Document method.

  • Add typing.

  • Also check for 0 in output.

  • Update gitignore.

  • Drop python 3.5 support.

  • Update badge link.

v0.0.4 (2021-03-10)

  • Add python_requires to setup.py.

v0.0.3 (2021-03-06)

  • Remove release script.

v0.0.2 (2021-03-06)

  • Fix release script.

  • Remove support for older versions.

  • Format setup.py.

  • Remove requirement for command to start with ffmpeg.

  • Add link to similar project.

  • Add changelog.

  • Rename project.

  • Initial commit.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ffmpeg-progress-yield-0.7.3.tar.gz (44.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ffmpeg_progress_yield-0.7.3-py2.py3-none-any.whl (9.6 kB view details)

Uploaded Python 2Python 3

File details

Details for the file ffmpeg-progress-yield-0.7.3.tar.gz.

File metadata

  • Download URL: ffmpeg-progress-yield-0.7.3.tar.gz
  • Upload date:
  • Size: 44.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for ffmpeg-progress-yield-0.7.3.tar.gz
Algorithm Hash digest
SHA256 86300053034bd994ffe306adc83bec2d117ec77ecb80b593d313aef5b7990ae2
MD5 dfd9859142e7f110c398b6ca67c8a20f
BLAKE2b-256 e11850d4d68618a24fa4803094c0701cdc943f2e26dfb3d9d72a82a59174862d

See more details on using hashes here.

File details

Details for the file ffmpeg_progress_yield-0.7.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for ffmpeg_progress_yield-0.7.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 289cba70e0ea733e151b6f525ec330bcc9b018260a73b38be8cb568cf8d0cd46
MD5 6e1880160b21b9e6002a41f8e6620041
BLAKE2b-256 e045ed5fc102194b9768df75534300afc01007364ba1ad8a70431a2eeb49c9ce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page