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

Hi all, I'm currently using PyAV in Google Colab to decode a video file (audio + video), process the video frame using object detection, and resize it, and finally, reencode...

AttributeError: module 'ffmpeg' has no attribute 'probe' 80287984919.mpg 不能获取 .mpg 类型视频的数据

I get this error when I try to overlay 2 videos and then merge their audios. ```py input_video = ffmpeg.input(input_path) overlay_video = ffmpeg.input(overlay_path) overlay_video = overlay_video.filter('scale', size='600x600') overlay = input_video.overlay(...

Do you still need to depend on future library? future will no longer work with Python 3.12 because imp module has been removed from stdlib and the situation will be...

As above. See bug report in #782 for complete context and justification the fix.

There is some unexepected behaviour resulting in `ffmpeg` errors when using `ffmpeg-python` in conjunction with `joblib.Parallel` and the `loky` backend. I came across the issue while working with video files,...

When using a pipe to write raw audio/video, if the output file can't be written to anymore due to the disk filling up, then a BrokenPipeError is raised. It would...

I'm trying to make video from image and audio numpy arrays instead of reading them from file, and there's not enough information on how to do that. I only managed...

hi, how do i overlay a video on another video in a time interval? i have this code now: ```python video_overlay = ffmpeg.input("overlay.mp4") stream = stream.overlay( video_overlay, enable=f"between=(t, {start}, {end})",...

I have a short 5-second video at 25 fps (125 frames). I try to apply 'zoompan', but the 'd' argument loops video d times. For example, ``` ( ffmpeg .input("3.png",...