akamhy / videohash

Near Duplicate Video Detection (Perceptual Video Hashing) - Get a 64-bit comparable hash-value for any video.
https://pypi.org/project/videohash
MIT License
264 stars 41 forks source link

BUG REPORT: AttributeError due to PIL.Image v10+ dropping ANTIALIAS #108

Open hagemt opened 11 months ago

hagemt commented 11 months ago

Describe the bug

VideoHash results in:

AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS'

Due to PIL.Image v10+ having deprecated ANTILIAS; fix appears to be LANCZOS or pinning PIL < 10:

https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html#constants

To Reproduce

Install via pip with PIL and pillow from brew (currently 10.0.0)

VideoHash("path/to.mp4")

Expected behavior

Object with .hash and no AttributeError

Screenshots

N/A

Please complete the following information:

Additional context

I think this would be a good first issue for another contributor. Should I attempt a PR?

Demmenie commented 10 months ago

This is fixed in PR #109 but it still needs to be merged.

rkgitvinay commented 6 months ago

Worked for me pip install Pillow==9.5.0

Demmenie commented 6 months ago

Worked for me pip install Pillow==9.5.0

This causes security issues. There are known DoS attacks that exploit versions of Pillow older than 10.0.1

Demmenie commented 4 days ago

I've fixed the issue in my fork of this repository "videohash2": https://github.com/Demmenie/videohash2 https://pypi.org/project/videohash2/