ffmpeg-python
ffmpeg-python copied to clipboard
Python bindings for FFmpeg - with complex filtering support
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...
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...

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...
how to add another video or audio or text into a rtmp stream input, then output to a new rtmp server
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...