python-ffmpeg
python-ffmpeg copied to clipboard
A python interface for FFmpeg using asyncio
Hello, I have found that keyboard interrupt does not work on Windows (I haven't tested it on other platforms). What I found is that `concurrent.futures.wait()` does not return on the...
I'm running a complicated numerical simulation and would like to send frames calculated for a movie to ffmpeg on the fly, e.g., during the calculation. Storing all the data and...
Hello, I would like to execute some code to overlay images on a video, this works fine using filepaths, but I would really prefer loading everything via bytes and streaming...
This PR exposes the `initializer` and `initargs` arguments of the `ThreadPoolExecutor` method. One useful example of this is integrating with `tqdm` to get a progress bar, as was requested in...
Niceness allows a process to have a lower or higher priority on Unix-like systems, this is useful to prevent ffmpeg from hogging all CPU resources in case of multiple concurrent...
Is there any way to add watermark image?
updates async example in docs
Encountered a case where non-utf8 ID3 tags in _normal_ stderr output will cause exceptions in an otherwise successful process. Telling `decode()` to ignore or replace errors fixes the issue. This...
If there is any ffmpeg output to stderr which cannot be successfully decoded from bytes to utf-8, `decode()` will raise a `UnicodeError` and processing will fail. This is possible for...