+
+
Compare two video files for content similarity using perceptual hashing
+
ffmpeg -i input_one -i input_two -filter_complex signature=detectmode=full:nb_inputs=2 -f null -
+
+ - ffmpeg
- starts the command
+ - -i input_one -i input_two
- assigns the input files
+ - -filter_complex
- enables using more than one input file to the filter
+ - signature=detectmode=full
- Applies the signature filter to the inputs in 'full' mode. The other option is 'fast'.
+ - nb_inputs=2
- tells the filter to expect two input files
+ - -f null -
- Sets the output of ffmpeg to a null stream (since we are not creating a transcoded file, just viewing metadata).
+
+
+
+