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

This pull request is based on #201 and solves #200 I added compatibility with Python version prior to 3.4. These changes are also not compatible with not yet released Python...

Am trying to create a commonly configured pipeline centrally in my project, so thought I'd use a factory method: ```python def build_ffmpeg_pipeline(filename): import ffmpeg # configure common options pipeline =...

import ffmpeg from ffmpeg import probe file = "/data1/luocheng/1.mp4" media_file = file print(ffmpeg.probe(media_file)["streams"]) Traceback (most recent call last): File "test.py", line 7, in print(ffmpeg.probe(media_file)["streams"]) File "/data1/luocheng/anaconda3/envs/work36_cu11/lib/python3.6/site-packages/ffmpeg/_probe.py", line 23, in probe...

Hello, Great work and I've playing with encoding h.264 with mpegts for DVB-T transmission. CBR How do I go about converting my bash script to python? ffmpeg.out -loglevel error \...

Hi guys. Just a little question. I know u can pass ``**metadata_dict`` as argument to set multiple metadata as u stated before, but why the keyword ``metadata`` isnt needed? ```...

I want to add the "-re" flag at the beginning of the command (i.e. as an input parameter). I cannot pass it to the `input` function as it is not...

Hi, We have a small workflow consisting of several steps. We read a file list from a txt file using a loop like the following: ``` while IFS= read -r...

i run merge bot in cpanel python host this error PermissionError: [Errno 13] Permission denied: 'ffprobe' how can solve this error?

## Problem I'm trying to add the `copyts` flag to my filtergraph. Adding `copyts=True` or `copyts=1` does not work. ## Solution Frome [this example](https://github.com/kkroening/ffmpeg-python/tree/master/examples#mono-to-stereo-with-offsets-and-video), i noticed that `shortest=None` is used....