I need to compare 2 videos to check whether they are the same.
So I am planning to do the following:
- Split both the videos into individual frames
- Compare each frame with the corresponding frame of the ref video using
Python Image Lib
- Count the number of different frames to decide whether they are same.
I would like to know whether there is any function in Python to help me with the first step, i.e., to split the video into individual frames. I do not want to use ffmpeg
to do the splitting.
Thanks in advance for the help