This is my code that obtain a file checksum:
import hashlib
print hashlib.md5(open('file.mp3','rb').read()).hexdigest()
The result is a checksum that include metadata and file content. Is there a way to consider only file content ignoring metadata?