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'm making a python script to convert video or image to ASCII art and I need ffmpeg for the last part. The thing is that when I build EXE file...

Great work! I'm confused as to how to solve this problem, but am sure that it is solvable with a little guidance. I'm trying to trim a clip that should...

question

Unable to assign shortest=1. Returns ' unable to find suitable output format for 1'. It's peculiar because it's stated on line 130 in the comments. Maybe something needs to be...

Hello, I am using the following snippet to convert a video to bytes: ``` process = ( ffmpeg .input(INPUT) .output('-', format='h264') .run_async(pipe_stdout=True) ) while True: packet = process.stdout.read(4096) if not...

![image](https://user-images.githubusercontent.com/43515926/160238604-9b4204f6-a442-4c23-bab8-f173cc66e1cb.png)

I was trying to figure out how to write subtitles for the various places I plan to put them, but I couldn't come up with an answer, so I decided...

Hi guys, I'm trying to make one video from multiple images using python-ffmpeg. I read document of python-ffmpeg and many posts, but I didn't get the information I wanted. **I...

FFmpeg has parameters that can have duplicates. For example: ``` ffmpeg -i input.mov -i subtitles.srt -map 0 -map 1 \ -acodec copy -vcodec copy \ -metadata:s:s:0 title="Wall clock" \ -metadata:s:s:0...

I want to input a rtmp server. And want to add new video or audio or text to the stream. Then output the result stream to the other rtmp server....

Hi guys, my question is like in the title, I want my python script to input a mkv, and return a m3u8 with a generator to transmit data by data...