how to check whether both videos are equal?

1 view (last 30 days)
how to check whether both videos are equal?
  1 Comment
Walter Roberson
Walter Roberson on 10 Nov 2013
Your plan is to create an automatic rating service for Rotten Tomatoes? By taking a few key movies with known Critic's Ratings, and comparing a new movie to them using your program, you can automatically determine which other movie the new movie is equal to in aesthetic quality ?

Sign in to comment.

Accepted Answer

Jan
Jan on 10 Nov 2013
Edited: Jan on 10 Nov 2013
Compare them.
Open both files and compare them byte by byte. Because this can be time consuming, a usual method is comparing the file size at first. If they match, compare the first 1000 bytes. If they match, create a "hash" for the files, e.g. MD5, see DataHash or CalcMD5.

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!