vote up 1 vote down star

Is there any in-built class/method for comparing content of two audio/ video files? Or is there any in-built class/method for converting a audio/video file to bit stream?

flag

39% accept rate
Do you want equivalence or bit wise comparison? What I mean is, you could have the same video in two different formats? I assume you just want a bit wise comparison as the former, a semantic comparison, is much more difficult. – BobbyShaftoe Mar 23 at 4:47
Don't forget to compare the file length first! – Mitch Wheat Mar 23 at 4:47
You need to define what you mean by "content." Is it quantitative? Is it qualitative? For example, what if your "content" meant range of disciples? What if "content" meant genre of music? What if "content" meant all musicians whom identified themselves as hippie? – Chris Mar 23 at 6:06

4 Answers

vote up 2 vote down check

You could use the hash functions in System.Security.Cryptography on two file streams and compare them. This is easy to do and works well for small files. If your files are big, which they probably are if you're dealing with audio/video, then reading in the file and generating the hash can take a bit of time.

link|flag
Yeah, this is a good first though. Actually, you could use MD5 and get fairly decent performance for small files. It depends on the requirement. Its possible that two different files have the same hash. Just an aside. – BobbyShaftoe Mar 23 at 4:48
It does, however, give you a quick gurantee of NO though. Probably you could take the first X number of bytes and hash that. Then go from there. – BobbyShaftoe Mar 23 at 4:51
Given the number of operations in a hash, would just comparing the file bytes be faster? – Mitch Wheat Mar 23 at 4:51
@Mitch Wheat, ya to an extent. However, in some cases you might keep more in memory then you need. If you have a source and you want to compare 10 files. You could just compute the hash of one file then compute hashes for the other files without storing both the source and the second file in memory. – BobbyShaftoe Mar 23 at 4:54
Okay, given two numbers that are hashes, and are different, what the hell does one hash integer have to do with another? Relatively, what can you do with two hashes to compare them? If they're actual hashes, nothing. No? :) – Chris Mar 23 at 6:09
vote up 0 vote down

There is no direct way to compare files. And you have to deal with Audio / Video files, which will be relatively big, I don't know Bitwise comparison will work or not.

link|flag
vote up 0 vote down

The other answers are good - either hashing (if you are comparing the file to multiple candidates) or a byte-wise comparison (if comparing two single files).

Here are a couple of additional thoughts:

First, check the file sizes - if they are different, then don't waste time comparing bytes. These are quick to check.

Second, try searching from the end or the middle of the file using a binary chop approach.

E.g., suppose you have a file like this:

ABCDEFGHIJKLMNOP

Then it is modified to this:

ABCDEF11GHIJKLMN

For the file size to remain the same, and content to have been inserted, the other bytes will be "knocked out". So a binary chop approach might pick this up with less reads (e.g., in seek to and read bytes SIZE/2-10 to SIZE/2+10 from both files, and compare).

You could try to combine the techniques. If you do it over a good enough sample of the data you deal with, you might find that of all the different files you compare (example):

  • 80% were found because the file size was different (10ms per file)
  • 10% were found due to binary chop (50ms per file)
  • 10% were found due to linear byte comparisons (2000ms per file)

Doing a binary chop over the whole file wouldn't be so smart, since I expect the hard disk will be faster if reading linearly rather than seeking to random spots. But if you check SIZE/2, then SIZE/4+SIZE/4x3, then SIZE/8, for say 5 iterations, you might find most of the differences without having to do a bytewise comparrison. Just some ideas.

Also, instead of reading from the front of the file, perhaps try reading from the end of the file backwards. Again you might be trading off seek time for probability, but in the "insert" scenario, assuming a change is made halfway into the file, you'll probably find this faster by starting from the end than from the start.

link|flag
vote up 1 vote down

You could do a byte-wise comparison of the two files. System.IO.File.ReadAllBytes(...) would be useful for that.

link|flag
Right, you could read all the bytes and just start comparing. Obviously, start with just the number of bytes, then compare each byte. This is one method that is simple to implement. – BobbyShaftoe Mar 23 at 4:51
That would work, were you trying to identify how identicle files are. We have no idea, at this point, what this guy is trying to, however. Software is about solving problems. Real problems. You solve someone's problem, you get an intellectual hard-on, and hopefully a paycheck. Otherwise, too bad. – Chris Mar 23 at 6:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.