mirror of
https://github.com/google/brotli.git
synced 2026-09-22 06:35:52 +00:00
What is a default quality of brotli command? #260
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @stokito on GitHub (Oct 27, 2018).
Nor in
brotli --helpnor inman brotliis not mentioned what is a default compression quality.It just said that quality can be in range of 0-9 but later it said that -q param can be in range 0-11.
What I see from sources in brotli.c in
mainmethod:So it looks like the default quality is 11 i.e. best.
-11param?@chylex commented on GitHub (Oct 31, 2018):
The default quality is mentioned:
I think the single dash (
-0to-9) quality parameters are just for convenience, the problem is that by convention a single dash parameter can only by followed by a single character, so-10or-11would break the convention.@eustas commented on GitHub (Jul 2, 2020):
@chylex Thanks for the answer.