kkroening / ffmpeg-python

Python bindings for FFmpeg - with complex filtering support
Apache License 2.0
10.12k stars 893 forks source link

CROP documentation error #656

Open apiszcz opened 2 years ago

apiszcz commented 2 years ago

The argument list is incorrect specified

Currently ffmpeg.crop(stream, x, y, width, height, **kwargs)

Actual ffmpeg.crop(stream, width, height, x, y, **kwargs)

fedral commented 10 months ago

fixed my problem, using" filter('crop', width, height, x, y)" doesn't report error.