Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding. Fork of https://github.com/master-of-zen/Av1an
Go to file
Josh Holmer 55df40362b
Error and retry chunk if frame count mismatches (#612)
I can't think of a situation where someone would want this issue to be
ignored, so we should treat it as any other encoder error and perform 3
retries, then exit if it continues to fail. This probably indicates some
kind of issue with decoding or applying filters to that chunk.
2022-04-17 03:51:23 +00:00
.cargo Fix x264/x265, Disable multiplexing (#290) 2021-07-11 14:36:31 +03:00
.devcontainer Add probe slow, add devcontainer, update readme (#289) 2021-07-09 19:32:47 +03:00
.github/workflows Use github cache action instead of using gha. Dedupe Dockerfile (#594) 2022-03-16 01:52:27 +00:00
av1an-cli Upgrade to edition 2021 (#610) 2022-04-10 16:46:49 +00:00
av1an-core Error and retry chunk if frame count mismatches (#612) 2022-04-17 03:51:23 +00:00
docs Fix docs markdown 2021-10-11 20:27:50 +03:00
src Refactor: Better ffmpeg pipe handling + more info in --version (#389) 2021-10-30 14:49:26 +03:00
.codeclimate.yml Disable file-lines and method-lines check for codeclimate, enable fixme plugin to mark TODOs/FIXMEs 2020-05-06 11:49:48 -06:00
.gitignore Add mergify config (#445) 2021-12-15 17:58:00 -05:00
.mergify.yml Do not automatically backport each PR to stable 2022-01-18 19:45:34 -05:00
Cargo.lock Use published ffmpeg-next (#609) 2022-04-10 16:32:03 +00:00
Cargo.toml Upgrade to edition 2021 (#610) 2022-04-10 16:46:49 +00:00
CHANGELOG.md correct docs 2021-09-10 21:20:09 +03:00
Dockerfile Use github cache action instead of using gha. Dedupe Dockerfile (#594) 2022-03-16 01:52:27 +00:00
LICENSE.md License change 2020-06-22 15:58:03 +03:00
MANIFEST.in try 2021-05-06 19:29:22 +03:00
README.md Updated README.md (#608) 2022-04-16 21:00:33 +00:00
rustfmt.toml Upgrade to edition 2021 (#610) 2022-04-10 16:46:49 +00:00


Av1an

A cross-platform framework to streamline video encoding

alt text

Discord server

Easy, Fast, Efficient and Feature-Rich

An easy way to start using AV1, HEVC/H.265, AVC/H.264, VP9, and VP8 encoders.
AOM, RAV1E, SVT-AV1, VPX, x265, x264 are supported.

Example with default parameters:

av1an -i input

Or with your own parameters:

av1an -i input -v " --cpu-used=3 --end-usage=q --cq-level=30 --threads=8" -w 10
--target-quality 95 -a " -c:a libopus -ac 2 -b:a 192k" -l my_log -o output.mkv

General Usage

-i  --input             Input file, or Vapoursynth (.py,.vpy) script
                        (relative or absolute path)

-o  --output-file       Name/Path for output file (Default: (input file name)_(encoder).mkv)
                        Output is `mkv` by default
                        Ouput extension can be set to: `mkv`, `webm`, `mp4`

-e  --encoder           Encoder to use
                        [default: aom] [possible values: aom, rav1e, vpx, svt-av1, x264, x265]

-v  --video-params      Encoder settings flags (If not set, will be used default parameters.)
                        Must be inside ' ' or " "

-p  --passes            Set number of passes for encoding
                        (Default: AOMENC: 2, rav1e: 1, SVT-AV1: 1,
                        VPX: 2, x265: 1, x264: 1)

-w  --workers           Override number of workers.

-r  --resume            Resumes encoding.

--keep                  Doesn't delete temporary folders after encode has finished.

-q  --quiet             Do not print a progress bar to the terminal.

-l  --logging           Path to .log file(By default created in temp folder)

--temp                  Set path for the temporary folder. [default: .hash]

-c  --concat            Concatenation method to use for splits Default: ffmpeg
                        [possible values: ffmpeg, mkvmerge, ivf]

FFmpeg Options

-a  --audio-params      FFmpeg audio settings (Default: copy audio from source to output)
                        Example: -a '-c:a libopus -b:a  64k'

-f  --ffmpeg            FFmpeg options video options.
                        Applied to each encoding segment individually.
                        (Warning: Cropping doesn't work with Target VMAF mode
                        without specifying it in --vmaf-filter)
                        Example:
                        --ff " -vf scale=320:240 "

--pix-format            Setting custom pixel/bit format for piping
                        (Default: 'yuv420p10le')

Chunking Options

--split-method          Method used for generating splits. (Default: av-scenechange)
                        Options: `av-scenechange`, `none`
                        `none` -  skips scenedetection.

-m  --chunk-method      Determine the method in which chunks are made for encoding.
                        By default the best method is selected automatically.
                        [possible values: segment, select, ffms2, lsmash, hybrid]

-s  --scenes            File to save/read scenes.

-x  --extra-split       Size of chunk after which it will be split [default: fps * 10]

--min-scene-len         Specifies the minimum number of frames in each split.

Target Quality

--target-quality        Quality value to target.
                        VMAF used as substructure for algorithms.
                        When using this mode, you must use quantizer/quality modes of encoder.

--target-quality-method Type of algorithm for use.
                        Options: per_shot

--min-q, --max-q        Min,Max Q values limits
                        If not set by the user, the default for encoder range will be used.

--vmaf                  Calculate VMAF after encoding is done and make a plot.

--vmaf-path             Custom path to libvmaf models.
                        example: --vmaf-path "vmaf_v0.6.1.pkl"
                        Recommended to place both files in encoding folder
                        (`vmaf_v0.6.1.pkl` and `vmaf_v0.6.1.pkl.model`)
                        (Required if VMAF calculation doesn't work by default)

--vmaf-res              Resolution for VMAF calculation.
                        [default: 1920x1080]

--probes                Number of probes for target quality. [default: 4]

--probe-slow            Use probided video encoding parameters for vmaf probes.

--vmaf-filter           Filter used for VMAF calculation. The passed format is filter_complex.
                        So if crop filter used ` -ff " -vf crop=200:1000:0:0 "`
                        `--vmaf-filter` must be : ` --vmaf-filter "crop=200:1000:0:0"`

--probing-rate          Setting rate for VMAF probes. Using every N frame used in probe.
                        [default: 4]

--vmaf-threads          Limit number of threads that are used for VMAF calculation

Main Features

Av1an allows for splitting input video by scenes for parallel encoding to improve encoding performance, because most AV1 encoders are currently not very good at multithreading and encoding is limited to a very limited number of threads.

  • Vapoursynth script input support.
  • Speed up video encoding.
  • "Target Quality" mode. Targeting end result reference visual quality. VMAF used as a substructure
  • Resuming encoding without loss of encoded progress.
  • Simple and clean console look.
  • Automatic detection of the number of workers the host can handle.
  • Both video and audio transcoding.

Installation

Av1an can be installed in two main ways, either:

  • With a package manager:

    • Cargo: cargo install av1an
    • Arch Linux: pacman -S av1an
  • Or do it manually:

    • Clone repository or download from Releases, then do cargo build --release.
  • Make sure to install these prerequisites first:

    • Install nasm, llvm, clang, and FFmpeg
    • Install Vapoursynth
    • Recommended to install lsmash/ffms2 for faster and better processing.

An encoder is also required, install any of these depending on the format/codec:

Av1an also supports these optional components:

Usage in Docker

Av1an can be run in a Docker container with the following command if you are in the current directory Linux

docker run --privileged -v "$(pwd):/videos" --user $(id -u):$(id -g) -it --rm masterofzen/av1an:latest -i S01E01.mkv {options}

Windows

docker run --privileged -v "${PWD}:/videos" -it --rm masterofzen/av1an:latest -i S01E01.mkv {options}

Docker can also be built by using

docker build -t "av1an" .

To specify a different directory to use you would replace $(pwd) with the directory

docker run --privileged -v "/c/Users/masterofzen/Videos":/videos --user $(id -u):$(id -g) -it --rm masterofzen/av1an:latest -i S01E01.mkv {options}

The --user flag is required on linux to avoid permission issues with the docker container not being able to write to the location, if you get permission issues ensure your user has access to the folder that you are using to encode.

Docker tags

The docker image has the following tags

Tag Description
latest Contains the latest stable av1an version release
master Contains the latest av1an commit to the master branch
sha-##### Contains the commit of the hash that is referenced
#.## Stable av1an version release

Support the developer

Bitcoin - 1GTRkvV4KdSaRyFDYTpZckPKQCoWbWkJV1