Page 2 of 3

Re: RapidCRC Unicode

Posted: Fri Jun 26, 2015 10:59 pm
by joby_toss
Great video demo!

Re: RapidCRC Unicode

Posted: Sat Jun 27, 2015 4:18 pm
by webfork
joby_toss wrote:Great video demo!
Cool thanks for the feedback. I'll try to get this up on Youtube sometime soon and maybe look into producing similar videos for RapidCRC and other freeware.

Re: RapidCRC Unicode

Posted: Sun Jul 05, 2015 9:36 am
by webfork
Minor update: it's been posted to Youtube:

https://www.youtube.com/watch?v=wwiz-up1gq8

I say minor because it's the same video if you've already viewed it.

Re: RapidCRC Unicode

Posted: Wed Feb 15, 2017 7:43 pm
by webfork
One thing about this program is that you can add CRC characters to a file name, but you can't remove them. One solution is Ant Renamer with the following settings:

1. Select the Characters Deletion tab
2. Set Number of characters to delete: 11
3. Select, From position: 0, From end

View of this config:

Image

(source)

Re: RapidCRC Unicode

Posted: Thu Feb 16, 2017 5:25 am
by Midas
Nice tip, thanks. :)

Re: RapidCRC Unicode

Posted: Thu Feb 16, 2017 4:03 pm
by Enternal
*puts on smartass hat*

Or this (look at attachment).

Code: Select all

(\s|_)(\[|\()[0-f]{8}(\]|\))
At least with this, it will ONLY remove the CRC32 checksums and not just any random 11 characters.

Re: RapidCRC Unicode

Posted: Thu Feb 16, 2017 4:31 pm
by webfork
Someone on that thread noted a cool regular expression trick:
Thanks for the tips! However, it's better to use the Regular expression in Ant Renamer with the following Expression: (\s|_)([|()[0-f]{8}(]|)). At least with this, it won't randomly strip any 11 characters and will only specifically target the CRC32 checksum.

(\s|_) - Matches either a space or an underscore character before the actual checksum.
([|() - Matches the bracket or an open parenthesis.
[0-f]{8} - CRC32 comprises of numbers and letters from a-f with a length of 8.
(]|) - Matches either a closing bracket or parenthesis.
Nice.

Re: RapidCRC Unicode

Posted: Thu Feb 16, 2017 4:47 pm
by Enternal
Lol! That was just me. I just decided to explain what each component of the expression means. If you hadn't noticed the date posted on that is after my post here.

EDIT: Odd. It shows that I posted an hour earlier on there then it is here. Either I'm going crazy or editing posts updates the time. Either way, I edited the post there to say hello to myself and everyone other person here :D.

Re: RapidCRC Unicode

Posted: Thu Feb 16, 2017 5:18 pm
by webfork
Enternal wrote:Lol! That was just me. I just decided to explain what each component of the expression means. If you hadn't noticed the date posted on that is after my post here
Ha! Nice. I totally missed your initial post.

Regardless, thanks for that. I've been meaning to learn about reg expressions for years now and here's a perfect opportunity :)

Re: RapidCRC Unicode

Posted: Fri Feb 17, 2017 12:17 pm
by Enternal
Haha. But yes, it's worth it to learn. I would recommend you read the tutorial from Just Great Software. It's a really well done tutorial and Just Great Software developers are known regex gurus. You can get it in PDF format on this page for EditPadPro demo https://www.editpadpro.com/download.html. Personally, I find the .chm format much easier to read than the PDF format so you can get it by downloading the demo on that same page, install it or extract (if possible), take EditPadPro7.chm, and then uninstall EditPadPro if you don't care about it. The tutorial should be under the Regular Expression Tutorial heading in both format. There is also a reference section and an example section.

Re: RapidCRC Unicode - batch hashing/checksum

Posted: Thu Jul 04, 2019 3:18 am
by Midas
According to its changelog, as of v0.3.28, RapidCRC now supports Blake2 hashing (first mentioned by user siegfried @ viewtopic.php?p=93258#p93258).

To the best of my knowledge, CHK is the only other utility here at TPFC that does, too (cf. viewtopic.php?p=93161#p93161)

Re: RapidCRC Unicode - batch hashing/checksum

Posted: Thu Jul 04, 2019 4:36 pm
by billon
Also 7-Zip

Re: RapidCRC Unicode - batch hashing/checksum

Posted: Fri Jul 05, 2019 3:13 am
by Midas
@billon: thanks for the tip -- although it's not a hasher per se, it's good to know. 8)

Re: RapidCRC Unicode - batch hashing/checksum

Posted: Mon Mar 15, 2021 11:42 am
by Midas
Edit: I think I solved it, I needed to select all hashes before creating the hashfiles. Plus, I forgot I had created the BIN hashes while ripping. :roll: Duh! :mrgreen:

Maybe someone will help me solve this little problem I've run into while using RapidCRC:

I ran it on an external drive filled with the rips of my audio CD collection and then told it to create a MD5 file for each folder.

I was afraid it would create a file with an hash for every single object in there -- I don't really care much for the hashes of text metafiles like logs and cues.

What happened instead is it created a MD5 hash for all the BIN files, but apparently skipped the WV (Wavpacks) and M4A. Do I have to manually tell it to do this or is there another way?

Image

Re: RapidCRC Unicode - batch hashing/checksum

Posted: Sat Mar 20, 2021 8:51 pm
by webfork
RapidCRC has been my go-to program for years now -- glad it was an easy fix.