ffmpeg-python icon indicating copy to clipboard operation
ffmpeg-python copied to clipboard

Python bindings for FFmpeg - with complex filtering support

Results 216 ffmpeg-python issues
Sort by recently updated
recently updated
newest added

When I try this: ``` ffmpeg \ .input( "my/absolute/path/image%03d.png", pattern_type="glob", framerate=24, bufsize="192k" ) \ .output("absolute/output/path/video.avi") \ .run() ``` I get this error: ``` ffmpeg version git-2019-12-07-ff2b75d Copyright (c) 2000-2019 the...

Arch Linux - everything is bleeding edge.. ```sh ==> Starting build()... running build running build_py creating build creating build/lib creating build/lib/ffmpeg copying ffmpeg/_view.py -> build/lib/ffmpeg copying ffmpeg/_filters.py -> build/lib/ffmpeg copying...

Hi there, How do I call [pre input] global ffmpeg commands (with ffmpeg-python)? Because these occur after calling ffmpeg but *before* the -i (input), I am not sure how to...

This PR adds the `script_filename` parameter to `get_args` and `compile` functions, introducing the ability to sidestep the "command line too long" error that can arise from complex filtergraphs, described in...

I'm having the case where I found not other option than to monkey-patch the `escape_chars` function as it just did the wrong thing for me: `ffmpeg.nodes.escape_chars = lambda x, y:x`...

Traceback (most recent call last): File "/main/ffmpeg.py", line 1, in import ffmpeg File "/main/ffmpeg.py", line 2, in stream = ffmpeg.input('video.mp4') AttributeError: module 'ffmpeg' has no attribute 'input'

stream = ffmpeg.input('C:/My_Work_Quixy/yolov5_final/yolov5_env/runs/detect/exp/Crossroads.mp4') stream = ffmpeg.output(input,'C:/My_Work_Quixy/yolov5_final/yolov5_env/data/video_outputs/out.h264') ffmpeg.run(stream) this is my code everything is correct still showing error, here i need to convert mp4 file to H264 so thta i can...

I would like to use `GPU` instead of `CPU` for encoding a video. [Getting Started with FFmpeg/libav using NVIDIA GPUs](https://developer.nvidia.com/ffmpeg) After installing installing `ffmpeg` and configuring `cuda` before installing it....

I am trying to convert DVD (VOB) files into an MP4. The first 2 files, don't have an audio track. What is the proper syntax for adding an "anullsrc" audio...