HydrogenAudio

Hydrogenaudio Forum => Uploads => Topic started by: icee on 2013-09-25 14:49:34

Title: WCRC32SUM
Post by: icee on 2013-09-25 14:49:34
The program computes CRC32 ckecksums of the PCM audio data in RIFF WAV files, for validating files against the EAC logs.
see also: http://www.hydrogenaudio.org/forums/index....showtopic=64481 (http://www.hydrogenaudio.org/forums/index.php?showtopic=64481)

----
comparing to wavcrc32:
C, not C++
more general wav files handling;
supports pipe, e.g., flac -c -d foo.flac | wcrc32sum -n;
----
the source is in the PUBLIC DOMAIN
both win32 and linux binaries included, or you can compile it by yourself: gcc -o wcrc32sum -std=c99 -O3 wcrc32sum.c
----
wcrc32sum foo.wav bar.wav ...
wcrc32sum -r foo.wav bar.wav ...
wcrc32sum -n foo.wav -c0 bar.wav ...
wcrc32sum --help