(2012-09-05, 15:06)malte Wrote: sudopinion Wrote:LOL: "I can't share the preview movie" Circo thinks he owns those for some reason....like he licenses any of that media....what a douche.
I don't think that money is for any licensing. I guess it will be mostly used for hosting costs etc.
I'm sure that it's a full-time job. Don't get me wrong: Emumovies is a great resource and has some quality stuff.
I just take issue with people who lay claim to distribution rights for videos and artwork "packs" or "previews" when they don't license any of the content from the actual publishers and artists.
Sort of like compiling pictures of other people's children from magazines & picture-frames and then trying to sell them or claim distribution rights to them. It's sleazy....
That aside, I noticed you have "skilled python coder" as your avatar's tagline...
I think python may be the language to solve this probelm:
I want to crc-check every file in a dir/subdir and match it against a database file containing indexed crc's each with a corresponding proper-name.
Another skilled python coder has submitted this as a starting point:
Code:
sFilePath = os.path.join(sFullPath, sFile)
sFileData = open(sFilePath, 'rb').read() // 'rb' simply means 'read in binary mode'
# File data hash ------------------------
hFileDataHash = hashlib.md5() // hashlib also supports sha1, sha224, sha256, sha384 and sha512 (for CRC32 you should use zlib library instead)
hFileDataHash.update(sFileData)
sFileDataHash = hFileDataHash.hexdigest()
and his psuedo code:
Code:
for each-file:
if file-extension = .zip/.rar:
get_hash
else:
create_hash
for each-database-entry:
if file-hash = database-hash:
copy (or move) original-file -> rom_folder/no-intro-name-file
What do you think? Ideally I'd need the output as a pipe delimited txt file I could parse with batch.