From ab9e565aad612007f61b42deabaf4e80a975ccee Mon Sep 17 00:00:00 2001 From: Michael Bebenita <mbebenita@gmail.com> Date: Sat, 22 Sep 2018 14:04:03 +0200 Subject: [PATCH] Updated README with analyzer notes. --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index d815b4cd..0fd78173 100755 --- a/README.md +++ b/README.md @@ -60,6 +60,22 @@ make -j8 ./aomdec ../output.ivf -o output.y4m ``` +# Using the AOMAnalyzer + +## Local Analyzer + +1. Download the [AOM Analyzer](http://aomanalyzer.org). +2. Download [inspect.js](https://people.xiph.org/~mbebenita/analyzer/inspect.js) and [inspect.wasm](https://people.xiph.org/~mbebenita/analyzer/inspect.wasm) and save them in the same directory. +3. Run the analyzer: `AOMAnalyzer path_to_inspect.js output.ivf` + +## Online Analyzer + +If your `.ivf` file is hosted somewhere (and CORS is enabled on your web server) you can use: + +``` +https://arewecompressedyet.com/analyzer/?d=https://people.xiph.org/~mbebenita/analyzer/inspect.js&f=path_to_output.ivf +``` + # Design * src/context.rs - High-level functions that write symbols to the bitstream, and maintain context. -- GitLab