I want to make a pixelate image in moviepy, I have reference the following Doc:
And tried the following:
clip = ImageClip("source.jpg").resize(0.01).resize(100)
While it does make the video blur, it does not produce a pixelated image.
What I want to do is something like the below:
- Imagemagick: How to pixelate/blur an image using ImageMagick?
However, I want to prevent using imagemagick natively if possible. Would like to know if it is possible, thanks.