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?
Is there any in-built class/method for comparing content of two audio/ video files? Or
Share
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.