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

I would like to decode a video using complex_filter and nvdec hardware acceleration. To have it be as fast as possible I would like the decoded frame to be passed...

Hi, I was trying the examples, but then I noticed we can't read videos... Linux 64, Gentoo ffmpeg-5.1.3 ``` import ffmpeg import numpy as np process1 = ( ffmpeg .input("in.mp4")...

I try to concat 2 videos but I was got an error. Here is my code: ``` try: in1 = ffmpeg.input(args.videos[0]) in2 = ffmpeg.input(args.videos[1]) v1 = in1.video a1 = in1.audio...

```python cmd = (f'{self.ffmpeg_cmd} -i "{input_files}" -i "{watermark_file}" ' f'-filter_complex "[1:v]scale=720:1280:force_original_aspect_ratio=decrease,' f'pad=720:1280:-1:-1:color=black[wm];[0:v][wm]overlay=format=auto,format=yuv420p" ' f'-codec:a copy "{output_file}"') ``` How to convert to ffmpeg-python code。

I am using ffmpeg-python to transcode mp4 files. I would like to immediately upload the converted video to the s3 bucket using the SDK without saving it to a local...

I am trying to integrate `filter_script:v` from the ffmpeg cli tool, useful for long, complex filter graphs where it gets limited when using in command line directly, and throws an...

I notice the last release of ffmpeg-python was released in 2019. Perhaps it is time to wrap up a new release? Is this library still being maintained? The number of...

I have the following issue when the code under it. I`ve installed using 'pip install ffmpeg' and 'pip install ffmpeg-python' and both present the same error. ----- "C:\Users\Admin\AppData\Local\Programs\Python\Python36-32\python.exe" "C:/Users/Admin/Documents/Midia_flow_ff/Main.py" Traceback...

Hello guys, I have this prototype and I'm trying to create 2 pipe outputs for video and audio, but video part doesn't work. Do you know how this problem could...

I am trying to merge two video files pretending not all the video files would have audio stream and trying to handle it by adding an audio stream when it...