I have some screenshots of frames from a movie that I haven’t seen much and I’m trying to find these frames in an MKV copy of the entire film without watching the film. Supposedly, ‘ffmpeg’ has a feature where it can do that—take a jpeg or png image file and search every frame from a video to find that image--these command-lines I found in the StackOverflow pages...
...are not working for me. Is there an effective command-line that would work?
Is there another software that would do that job for me?
I know that such a tool would be useful for color-matching projects where someone is collecting target frames from a Blu Ray from a collection of reference frames from HDTV rips, DVD, and LDs with desired color. Such a tool would be good for someone who doesn't want to get too involved with a movie, but still enjoys watching it.
Code:
ffmpeg.exe -i "1.mkv" -r 1 -loop 1 -i 1.jpg -an -filter_complex "blend=difference:shortest=1,blackframe=99:32" -f null -
Code:
ffmpeg.exe -i "1.mkv" -r 1 -loop 1 -i 1.jpg -an -filter_complex "blend=difference:shortest=1,blackframe=99:32" -f null - 2>&1 | grep blackframe | sed 's/.*frame\:\(.*\)/\1/'
Code:
ffmpeg.exe -i video.mp4 -loop 1 -i image.jpg -an -filter_complex "blend=difference,blackframe=99:32" -f null -
...are not working for me. Is there an effective command-line that would work?
Is there another software that would do that job for me?
I know that such a tool would be useful for color-matching projects where someone is collecting target frames from a Blu Ray from a collection of reference frames from HDTV rips, DVD, and LDs with desired color. Such a tool would be good for someone who doesn't want to get too involved with a movie, but still enjoys watching it.