Brotli compression format
Go to file
2017-08-08 10:25:39 +02:00
c Update API, and more (#581) 2017-08-04 10:02:56 +02:00
csharp Transpile Java speedup (#548) 2017-05-07 17:40:12 +02:00
docs Update API, and more (#581) 2017-08-04 10:02:56 +02:00
go/cbrotli Update wrappers (#564) 2017-06-21 10:59:38 +02:00
java/org/brotli Update API, and more (#581) 2017-08-04 10:02:56 +02:00
python Python: Update bro_test to reference script directly (#582) 2017-08-08 10:25:39 +02:00
research Update (#574) 2017-07-21 10:07:24 +02:00
scripts Fix linux-bazel build (#566) 2017-06-22 11:38:49 +02:00
tests Update (#555) 2017-05-29 17:55:14 +02:00
.editorconfig Add an EditorConfig file to provide consistent style across editors. (#579) 2017-08-02 16:58:43 +02:00
.gitignore Update (#555) 2017-05-29 17:55:14 +02:00
.gitmodules Move files & update paths (#541) 2017-04-23 14:07:08 +02:00
.travis.yml Fix linux-bazel build (#566) 2017-06-22 11:38:49 +02:00
BUILD Add JNI wrappers. (#556) 2017-06-01 13:51:18 +02:00
CMakeLists.txt Update (#555) 2017-05-29 17:55:14 +02:00
configure Do not assume that bash is installed in /bin (#477) 2016-12-09 08:58:13 +01:00
configure-cmake Move files & update paths (#541) 2017-04-23 14:07:08 +02:00
CONTRIBUTING.md Apply 80-chars limit to CONTRIBUTING.md 2016-02-18 15:20:59 +01:00
LICENSE Prepare to release 0.4.0 2016-06-14 15:07:13 +02:00
Makefile Update (#555) 2017-05-29 17:55:14 +02:00
MANIFEST.in Update (#555) 2017-05-29 17:55:14 +02:00
premake5.lua Added windows platform support to premake (#567) 2017-07-10 19:57:05 +02:00
README.md Add link to 7Zip plugin 2017-08-04 15:40:57 +02:00
setup.cfg Python: Update README with information about code formatting 2016-10-17 13:57:56 -04:00
setup.py Move files & update paths (#541) 2017-04-23 14:07:08 +02:00
WORKSPACE Fix bazel go build (#558) 2017-06-07 12:47:48 +02:00

Brotli

Introduction

Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.

The specification of the Brotli Compressed Data Format is defined in RFC 7932.

Brotli is open-sourced under the MIT License, see the LICENSE file.

Brotli mailing list: https://groups.google.com/forum/#!forum/brotli

TravisCI Build Status AppVeyor Build Status

Build instructions

Autotools-style CMake

configure-cmake is an autotools-style configure script for CMake-based projects.

The basic commands to build, test and install brotli are:

$ mkdir out && cd out
$ ../configure-cmake
$ make
$ make test
$ make install

To build static libraries use --disable-shared-libs argument:

$ mkdir out-static && cd out-static
$ ../configure-cmake --disable-shared-libs
$ make install

Bazel

See Bazel

CMake

The basic commands to build, test and install brotli are:

$ mkdir out && cd out
$ cmake ..
$ make
$ make test
$ make install

You can use other CMake configuration. For example, to build static libraries:

$ mkdir out-static && cd out-static
$ cmake .. -DBUILD_SHARED_LIBS=OFF
$ make

Premake5

See Premake5

Python

To install the latest release of the Python module, run the following:

$ pip install brotli

See the Python readme for more details on installing from source, development, and testing.

Benchmarks

Disclaimer: Brotli authors take no responsibility for the third party projects mentioned in this section.

Independent decoder implementation by Mark Adler, based entirely on format specification.

JavaScript port of brotli decoder. Could be used directly via npm install brotli

Hand ported decoder / encoder in haxe by Dominik Homberger. Output source code: JavaScript, PHP, Python, Java and C#

7Zip plugin