Anime CRC32 checksum in Linux

  • Make sure you have python fchksum installed (for gentoo users : emerge dev-python/python-fchksum)
  • Create a file (crc32sum.py) w/ the following content:

[python]#!/usr/bin/python
import fchksum

for file in sys.argv[1:]:
print fchksum.fcrc32t(file)[0], ” “, file[/python]

  • Now you can check your favorite Anime files:

[shell]$ ./crc32sum.py [DB]_Naruto*
F71B0275 [DB]_Naruto_Shippuuden_025_F71B0275].avi
35057A9C [DB]_Naruto_Shippuuden_026_35057A9C].avi[/shell]

[Update 2008.11.05] Here’s a version which doesn’t need extra modules installation: animecheck.py