From 32618c34f1862e9b9a558827f5fab7fe3b72b907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A5=8A=E8=82=87=E5=B3=B0?= Date: Sat, 2 Mar 2019 00:25:01 +0800 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index b2f8d60..bf7d758 100644 --- a/README.md +++ b/README.md @@ -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 +```