Calculate checksum of audio files without considering the header - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T18:54:02Z http://stackoverflow.com/feeds/question/351306 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/351306/calculate-checksum-of-audio-files-without-considering-the-header 1 Calculate checksum of audio files without considering the header bene 2008-12-08T23:14:06Z 2009-07-22T11:45:58Z <p>I want to programmatically create a SHA1 checksum of audio files (MP3, Ogg Vorbis, Flac). The requirement is that the checksum should be stable <strong>even if the header (eg. ID3) changes</strong>.<br/> <em>Note: The audio files don't have CRCs</em></p> <p>This is what I tried by now:</p> <h3>1) Reading + Hashing all MPEG frames using Perl and <a href="http://search.cpan.org/dist/MPEG::Audio::Frame/" rel="nofollow">MPEG::Audio::Frame</a></h3> <pre><code>my $sha1 = Digest::SHA1-&gt;new; while (my $frame = MPEG::Audio::Frame-&gt;read(\*FH)) { $sha1-&gt;add($frame-&gt;content()); } </code></pre> <h3>2) Decoding + Hashing all MPEG frames using Python and <a href="http://spacepants.org/src/pymad/" rel="nofollow">libmad (pymad)</a></h3> <pre><code>mf = mad.MadFile(path) sha1 = hashlib.sha1() while 1: buf = mf.read() if (buf is None): break sha1.update(buf) </code></pre> <h3>3) Using <a href="http://tomclegg.net/mp3cat" rel="nofollow">mp3cat</a></h3> <pre><code>&gt; mp3cat - - &lt; file.mp3 | sha1sum </code></pre> <p>However, none of those methods provided a <strong>stable</strong> checksum. Namely, in <em>some</em> cases the checksum changed after retagging the file with <a href="http://musicbrainz.org/doc/PicardTagger" rel="nofollow">picard</a>.</p> <p>Are there any libraries that already provide what I want?<br/> I don't care about the programming language… </p> <p><b>Update:</b> I debugged the case a bit further. The libmad checksum inconsitency seems to happen in cases where libmad gets some decoding errors, like <em>"Huffman data overrun (0x0238)"</em>. As this really happens on many of the mp3 files I'm not sure if it really indicates a broken file…</p> http://stackoverflow.com/questions/351306/calculate-checksum-of-audio-files-without-considering-the-header/363738#363738 0 Answer by LarryF for Calculate checksum of audio files without considering the header LarryF 2008-12-12T18:37:42Z 2009-02-27T21:50:33Z <p>Bene, If I were you, (And I am in the process of working on something very similar to what you want to do), I would hash the mp3 data block. (Extract it to raw data first, and write it out to disk, so you know what you are dealing with). Then, modify the ID3 tag. Hash your data again. Now, if it changes, compare your two sets of raw data and find out WHERE it changed. Chances are, you might be over-stepping a boundary somewhere. If I recall, MP3 files start with something like FF F8. Well, at least the frame does.</p> <p>I'm interested in your findings, as I'm still writing all my code to deal with the finger prints, etc, and haven't gotten to the actual hashing yet.</p> http://stackoverflow.com/questions/351306/calculate-checksum-of-audio-files-without-considering-the-header/897594#897594 0 Answer by mivk for Calculate checksum of audio files without considering the header mivk 2009-05-22T12:26:34Z 2009-05-22T12:26:34Z <p>I'm trying to do the same thing. I used MD5 instead of SHA1. I started to export audio checksums using mp3tag (www.mp3tag.de/en/); then made a Perl script similar to yours to do the same thing. Then I removed all tags from my test file, and the audio checksum remained the same.</p> <p>This is the script:</p> <pre><code>use MPEG::Audio::Frame; use Digest::MD5 qw(md5_hex); use strict; my $file = 'E:\Music\MP3\Russensoul\01 - 5nizza , Soldat (Russensoul - Russensoul).mp3'; my $mp3tag_audio_md5 = lc '2EDFBD62995A46A45CEEC08C1F303486'; my $md5 = Digest::MD5-&gt;new; open(FILE, $file) or die "Cannot open $file : $!\n"; binmode FILE; while(my $frame = MPEG::Audio::Frame-&gt;read(\*FILE)){ $md5-&gt;add($frame-&gt;asbin); } print '$md5-&gt;hexdigest : ', $md5-&gt;hexdigest, "\n", 'mp3tag_audio_md5 : ', $mp3tag_audio_md5, "\n", ; </code></pre> <p>Is it possible that whatever you use to modify your tags sometimes also modifies mp3 headers?</p> http://stackoverflow.com/questions/351306/calculate-checksum-of-audio-files-without-considering-the-header/1164718#1164718 1 Answer by Tobias R for Calculate checksum of audio files without considering the header Tobias R 2009-07-22T11:45:58Z 2009-07-22T11:45:58Z <p>If you are looking for stable hashes for the actual music you might want to look at <a href="http://code.google.com/p/musicip-libofa/" rel="nofollow">libOFA</a>. Your current methods will give you different results because the formats can have embedded tags. Also if you want two different files with the same song to return the same hash you need to regard things like bitrate and sample frequencies.</p> <p>libOFA on the other hand can give you a stable hash that can be used between formats and different encodings. Might be what you want?</p>