-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be51012
commit 32618c3
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
# wcrc32sum | ||
This program was original uploaded by iceeLyne at [hydrogenaudio](https://hydrogenaud.io/index.php/topic,102787.0.html). I reupload it to github in case the original website is inaccessible. | ||
|
||
You can compile it with `gcc -o wcrc32sum -std=c99 -O2 wcrc32sum.c` | ||
|
||
The program computes CRC32 ckecksums of the PCM audio data in RIFF WAV files, for validating files against the EAC logs. | ||
|
||
Examples for this program: | ||
``` | ||
wcrc32sum foo.wav bar.wav | ||
wcrc32sum -r foo.wav bar.wav | ||
wcrc32sum -n foo.wav -c0 bar.wav | ||
wcrc32sum --help | ||
``` | ||
pipe usage | ||
``` | ||
flac -c -d foo.flac | wcrc32sum -n | ||
``` |