Menu

Tree [3a1cfb] main /
 History

HTTPS access


File Date Author Commit
 .github 2021-10-20 Akash Mahanty Akash Mahanty [a988ab] Update ci_linux.yml
 .idea 2021-10-19 Akash Mahanty Akash Mahanty [d2bf65] type annotation added along with mypy based tes...
 assets 2021-10-20 Akash Mahanty Akash Mahanty [671f09] a better ffmpeg downloader for tests on windows
 tests 2021-10-19 Akash Mahanty Akash Mahanty [d2bf65] type annotation added along with mypy based tes...
 videohash 2021-10-22 Akash Mahanty Akash Mahanty [0ce809] use f-strings for String interpolation instead ...
 .gitignore 2021-10-20 Akash Mahanty Akash Mahanty [1a1bab] Better static type checking
 .whitesource 2021-01-17 whitesource-bolt-for-github[bot] whitesource-bolt-for-github[bot] [2443b1] Add .whitesource configuration file
 CONTRIBUTING.md 2021-10-20 Akash Mahanty Akash Mahanty [137207] lint and format MarkDown in files CONTRIBUTING....
 DEVELOPMENT.md 2021-10-20 Akash Mahanty Akash Mahanty [137207] lint and format MarkDown in files CONTRIBUTING....
 LICENSE 2021-01-17 Akash Mahanty Akash Mahanty [fb7326] Initial commit
 README.md 2021-10-20 Akash Mahanty Akash Mahanty [137207] lint and format MarkDown in files CONTRIBUTING....
 _config.yml 2021-10-18 Akash Mahanty Akash Mahanty [100274] Set theme jekyll-theme-slate
 mypy.ini 2021-10-20 Akash Mahanty Akash Mahanty [06f83a] create mypy.ini
 pytest.ini 2021-10-19 Akash Mahanty Akash Mahanty [d2bf65] type annotation added along with mypy based tes...
 requirements-test.txt 2021-10-19 Akash Mahanty Akash Mahanty [d2bf65] type annotation added along with mypy based tes...
 requirements.txt 2021-10-10 Akash Mahanty Akash Mahanty [bddf0c] version 2 (#36)
 setup.cfg 2021-10-20 Akash Mahanty Akash Mahanty [02fb32] max-line-length = 127
 setup.py 2021-10-22 Akash Mahanty Akash Mahanty [85652c] Operating System :: MacOS

Read Me


The Python package for near duplicate video detection

Build Status Build Status Build Status codecov Total alerts Language grade: Python pypi Downloads GitHub lastest commit PyPI - Python Version


⭐️ Introduction

Videohash is a Python library for detecting near-duplicate videos (Perceptual Video Hashing).
Any video input can be used to generate a 64-bit equivalent hash value with this package.

The video-hash-values for identical/near-duplicate videos are the same or similar, implying that if the video is resized (upscaled/downscaled), transcoded, watermark added/removed, changed color, changed frame rate, changed aspect ratio, slightly cropped, or black-bars added/removed, the hash-value should remain unchanged or not vary substantially.

How the hash values are calculated

  • Every one second, a frame from the input video is extracted, the frames are shrunk to a 144x144 pixel square, a collage is constructed that contains all of the resized frames(square-shaped), the collage's wavelet hash is the video hash value for the original input video.

When not to use Videohash

  • Videohash cannot be used to verify whether one video is a part of another (video fingerprinting). If the video is reversed or rotated by a substantial angle (greater than 10 degrees), Videohash will not provide the same or similar hash result, but you can always reverse the video manually and generate the hash value for reversed video.

How to compare the video hash values stored in a database


🏗 Installation

To use this software, you must have FFmpeg installed. Please read how to install FFmpeg if you don't already know how.

Install videohash

pip install videohash
  • Install directly from GitHub:
pip install git+https://github.com/akamhy/videohash.git

🌱 Features

  • Generate videohash of a video directly from its URL or its path.
  • Can be used to implement scalable Near Duplicate Video Retrieval.
  • The end-user can access the image representation(the collage) of the video.
  • A videohash instance can be compared to a 64-bit stored hash, its hex representation, bitlist, and other videohash instances.
  • Faster than the old method of comparing each frame individually. The videohash package generates a single 64-bit video hash value, which saves a significant amount of database space. And the number of comparisons required drops significantly.

🚀 Usage

In the following usage example the first three instance of VideoHash class are computing the hash for the same video(not same as in checksum) and the last one is a different video.

>>> from videohash import VideoHash
>>> # video: Artemis I Hot Fire Test
>>> url1 = "https://www.youtube.com/watch?v=PapBjpzRhnA"
>>> videohash1 = VideoHash(url=url1, download_worst=False)
>>>
>>> videohash1.hash # video hash value of the file, value is same as str(videohash1)
'0b0011010000011111111011111111111110001111011110000000000000000000'
>>>
>>> #VIDEO:Artemis I Hot Fire Test
>>> url2="https://raw.githubusercontent.com/akamhy/videohash/main/assets/rocket.mkv"
>>> videohash2 = VideoHash(url=url2)
>>> videohash2.hash
'0b0011010000011111111011111111111110001111011110000000000000000000'
>>> videohash2.hash_hex
'0x341fefff8f780000'
>>> videohash2.hash_hex
'0x341fefff8f780000'
>>> videohash1 - videohash2
0
>>> videohash1 == videohash2
True
>>> videohash1 == "0b0011010000011111111011111111111110001111011110000000000000000000"
True
>>> videohash1 != videohash2
False
>>> path3 = "/home/akamhy/Downloads/rocket.mkv" #VIDEO: Artemis I Hot Fire Test
>>> videohash3 = VideoHash(path=path3)
>>> videohash3.hash
'0b0011010000011111111011111111111110001111011110000000000000000000'
>>> videohash3 - videohash2
0
>>> videohash3 == videohash1
True
>>> url4 = "https://www.youtube.com/watch?v=_T8cn2J13-4" #VIDEO: How We Are Going to the Moon
>>> videohash4 = VideoHash(url=url4)
>>> videohash4.hash_hex
'0x7cffff000000eff0'
>>> videohash4 - "0x7cffff000000eff0"
0
>>> videohash4.hash
'0b0111110011111111111111110000000000000000000000001110111111110000'
>>> videohash4 - videohash2
34
>>> videohash4 != videohash2
True

Run the above code @ https://replit.com/@akamhy/videohash-usage-2xx-example-code-for-video-hashing#main.py

Extended Usage : https://github.com/akamhy/videohash/wiki/Extended-Usage

API Reference : https://github.com/akamhy/videohash/wiki/API-Reference


🛡 License

License: MIT

Released under the MIT License. See
license for details.

The VideoHash logo was created by iconolocode. See license for details.

Videos are from NASA and are in the public domain.

NASA copyright policy states that "NASA material is not protected by copyright unless noted".

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.