Update help message to reflect addition of libvorbis and libflac to compress.c.

svn-id: r27908
This commit is contained in:
Sean Murray
2007-07-04 23:03:34 +00:00
parent c347b48398
commit 53f2bd07c4
7 changed files with 83 additions and 51 deletions
+7 -4
View File
@@ -699,7 +699,7 @@ void convertWAV(char *wavName, char *prefix) {
}
void showhelp(char *exename) {
printf("\nUsage: %s <inputfile> \n", exename);
printf("\nUsage: %s <params> <file>\n", exename);
printf("\nParams:\n");
printf(" --mp3 encode to MP3 format (default)\n");
@@ -724,14 +724,17 @@ void showhelp(char *exename) {
printf(" --silent the output of oggenc is hidden (default:disabled)\n");
printf("\nFlac mode params:\n");
printf(" [params] optional arguments passed directly to the encoder\n");
printf(" recommended is: --best -b 1152\n");
printf(" --fast FLAC uses compresion level 0\n");
printf(" --best FLAC uses compresion level 8\n");
printf(" -<value> specifies the value (0 - 8) of compresion (8=best)(default:%d)\n", flacCompressDef);
printf(" -b <value> specifies a blocksize of <value> samples (default:%d)\n", flacBlocksizeDef);
printf(" --verify files are encoded and then decoded to check accuracy\n");
printf(" --silent the output of FLAC is hidden (default:disabled)\n");
printf("\n --help this help message\n");
printf("\n\nIf a parameter is not given the default value is used\n");
printf("If using VBR mode for MP3 -b and -B must be multiples of 8; the maximum is 160!\n");
printf("Use the `mac' option instead of a filename if converting simon2mac sounds\n");
exit(2);
}